mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
20 lines
596 B
C#
20 lines
596 B
C#
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace BTCPayServer.Services.Shopify.ApiModels
|
||
|
{
|
||
|
public class ShopifyOrder
|
||
|
{
|
||
|
[JsonProperty("id")]
|
||
|
public string Id { get; set; }
|
||
|
[JsonProperty("total_price")]
|
||
|
public decimal TotalPrice { get; set; }
|
||
|
[JsonProperty("currency")]
|
||
|
public string Currency { get; set; }
|
||
|
[JsonProperty("financial_status")]
|
||
|
public string FinancialStatus { get; set; }
|
||
|
[JsonProperty("transactions")]
|
||
|
public IEnumerable<ShopifyTransaction> Transactions { get; set; }
|
||
|
}
|
||
|
}
|