Api/NetinaShop.Infrastructure/Models/RestApi/Zarinpal/ZarinaplPaymentLinkResponse.cs

16 lines
512 B
C#

namespace NetinaShop.Infrastructure.Models.RestApi.Zarinpal;
public class ZarinaplPaymentLinkResponse
{
public ZarinaplPaymentLinkResponseData data { get; set; }
public List<object> errors { get; set; }
}
public class ZarinaplPaymentLinkResponseData
{
public int code { get; set; }
public string message { get; set; } = string.Empty;
public string authority { get; set; } = string.Empty;
public string fee_type { get; set; } = string.Empty;
public int fee { get; set; }
}