btcpayserver-shopify-plugin/Plugins/BTCPayServer.Plugins.ShopifyPlugin/ViewModels/Models/Requests/ShopifyOrderViewModel.cs
nicolas.dorier b3f606546e
Init Commit
2025-02-17 17:23:54 +09:00

10 lines
307 B
C#

namespace BTCPayServer.Plugins.ShopifyPlugin.ViewModels.Models;
public class ShopifyOrderViewModel : BaseShopifyPublicViewModel
{
public string OrderId { get; set; }
public string InvoiceId { get; set; }
public string ShopName { get; set; }
public string BTCPayServerUrl { get; set; }
}