Invoice Details: Improve payments list and print view (#4817)

Closes #4729.

Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
This commit is contained in:
d11n
2023-04-04 03:59:14 +02:00
committed by GitHub
parent 2bd1842da1
commit 11f05285a1
6 changed files with 140 additions and 117 deletions

View File

@@ -23,8 +23,8 @@ namespace BTCPayServer.Models.InvoicingModels
public bool Replaced { get; set; }
public BitcoinLikePaymentData CryptoPaymentData { get; set; }
public string AdditionalInformation { get; set; }
public decimal NetworkFee { get; set; }
public string PaymentProof { get; set; }
}
public class OffChainPaymentViewModel
@@ -32,6 +32,8 @@ namespace BTCPayServer.Models.InvoicingModels
public string Crypto { get; set; }
public string BOLT11 { get; set; }
public PaymentType Type { get; set; }
public string Amount { get; set; }
public string PaymentProof { get; set; }
}
public class InvoiceDetailsModel