17 lines
563 B
C#
17 lines
563 B
C#
|
|
namespace HiVakil.Infrastructure.Models.RestApi.Zarinpal;
|
|||
|
|
|
|||
|
|
public class ZarinaplPaymentLinkRequest
|
|||
|
|
{
|
|||
|
|
public string merchant_id { get; set; } = string.Empty;
|
|||
|
|
public int amount { get; set; }
|
|||
|
|
public string callback_url { get; set; } = string.Empty;
|
|||
|
|
public string description { get; set; } = string.Empty;
|
|||
|
|
public ZarinaplPaymentLinkRequestMetadata metadata { get; set; } = new();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class ZarinaplPaymentLinkRequestMetadata
|
|||
|
|
{
|
|||
|
|
public string mobile { get; set; } = string.Empty;
|
|||
|
|
public string email { get; set; } = string.Empty;
|
|||
|
|
}
|