namespace BTCPayServer.Services.Invoices { public class Amounts { public string Currency { get; set; } /// /// An amount with fee included /// public decimal Gross { get; set; } /// /// An amount without fee included /// public decimal Net { get; set; } public override string ToString() { return $"{Currency}: Net={Net}, Gross={Gross}"; } } }