GreenField: Add StoreId to Invoice model (#2592)

This commit is contained in:
Andrew Camilleri
2021-06-24 16:15:51 +02:00
committed by GitHub
parent dca376cb46
commit cb2dd464f1
4 changed files with 7 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ namespace BTCPayServer.Client.Models
public class InvoiceData : CreateInvoiceRequest
{
public string Id { get; set; }
public string StoreId { get; set; }
public string CheckoutLink { get; set; }
[JsonConverter(typeof(StringEnumConverter))]
public InvoiceStatus Status { get; set; }