mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-18 21:32:27 +01:00
15 lines
418 B
C#
15 lines
418 B
C#
|
using System.Collections.Generic;
|
||
|
using BTCPayServer.Services.Invoices;
|
||
|
|
||
|
namespace BTCPayServer.Components.InvoiceStatus
|
||
|
{
|
||
|
public class InvoiceStatusViewModel
|
||
|
{
|
||
|
public InvoiceState State { get; set; }
|
||
|
public List<PaymentEntity> Payments { get; set; }
|
||
|
public string InvoiceId { get; set; }
|
||
|
public bool IsArchived { get; set; }
|
||
|
public bool HasRefund { get; set; }
|
||
|
}
|
||
|
}
|