mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
26 lines
1 KiB
C#
26 lines
1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Models.PaymentRequestViewModels;
|
|
using static BTCPayServer.Client.Models.InvoiceDataBase;
|
|
|
|
namespace BTCPayServer.Models.InvoicingModels
|
|
{
|
|
public class InvoiceReceiptViewModel
|
|
{
|
|
public InvoiceStatus Status { get; set; }
|
|
public string InvoiceId { get; set; }
|
|
public string OrderId { get; set; }
|
|
public string Currency { get; set; }
|
|
public string StoreName { get; set; }
|
|
public string BrandColor { get; set; }
|
|
public string LogoFileId { get; set; }
|
|
public string CssFileId { get; set; }
|
|
public decimal Amount { get; set; }
|
|
public DateTimeOffset Timestamp { get; set; }
|
|
public Dictionary<string, object> AdditionalData { get; set; }
|
|
public ReceiptOptions ReceiptOptions { get; set; }
|
|
public List<ViewPaymentRequestViewModel.PaymentRequestInvoicePayment> Payments { get; set; }
|
|
public string OrderUrl { get; set; }
|
|
}
|
|
}
|