8 lines
261 B
C#
8 lines
261 B
C#
|
|
namespace HiVakil.Infrastructure.Models.RestApi.Zarinpal;
|
|||
|
|
|
|||
|
|
public class ZarinaplVerifyPaymentRequest
|
|||
|
|
{
|
|||
|
|
public string merchant_id { get; set; } = string.Empty;
|
|||
|
|
public int amount { get; set; }
|
|||
|
|
public string authority { get; set; } = string.Empty;
|
|||
|
|
}
|