Api/Netina.Infrastructure/Models/RestApi/Zarinpal/ZarinaplPaymentVerifyRespon...

20 lines
615 B
C#
Raw Normal View History

2024-04-16 20:01:34 +03:30
namespace Netina.Infrastructure.Models.RestApi.Zarinpal;
public class ZarinaplPaymentVerifyResponse
{
public ZarinaplPaymentVerifyResponseData data { get; set; }
public List<object> 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 long ref_id { get; set; }
public string fee_type { get; set; } = string.Empty;
public long fee { get; set; }
}