20 lines
617 B
C#
20 lines
617 B
C#
namespace NetinaShop.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 int ref_id { get; set; }
|
|
public string fee_type { get; set; } = string.Empty;
|
|
public int fee { get; set; }
|
|
} |