nopcommerce/Models/PaymentDataModel.cs
2023-11-24 15:50:23 +00:00

19 lines
493 B
C#

namespace Nop.Plugin.Payments.BTCPayServer.Models
{
public struct PaymentDataModel
{
public string CurrencyCode;
public decimal Amount;
public string OrderID;
public int StoreID;
public int CustomerID;
public string Description;
public string BuyerEmail;
public string BuyerName;
public string RedirectionURL;
public string Lang;
public string OrderUrl { get; set; }
}
}