17 lines
566 B
C#
17 lines
566 B
C#
namespace NetinaShop.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;
|
|
} |