10 lines
307 B
C#
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; }
|
|
}
|