mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
10 lines
228 B
C#
10 lines
228 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class UpdateInvoiceRequest
|
|
{
|
|
public bool? Archived { get; set; }
|
|
public InvoiceStatus? Status { get; set; }
|
|
public string Email { get; set; }
|
|
}
|
|
}
|