namespace NetinaShop.Infrastructure.Models.RestApi.Zarinpal; public class ZarinaplPaymentVerifyResponse { public ZarinaplPaymentVerifyResponseData data { get; set; } public List errors { get; set; } } public class ZarinaplPaymentVerifyResponseData { public int code { get; set; } public string message { get; set; } = string.Empty; public string card_hash { get; set; } = string.Empty; public string card_pan { get; set; } = string.Empty; public int ref_id { get; set; } public string fee_type { get; set; } = string.Empty; public int fee { get; set; } }