namespace NetinaShop.Infrastructure.Models.RestApi.Zarinpal; public class ZarinaplPaymentLinkResponse { public ZarinaplPaymentLinkResponseData data { get; set; } public List 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; } }