22 lines
535 B
C#
22 lines
535 B
C#
namespace CompanyManagment.App.Contracts.SepehrPaymentGateway;
|
|
|
|
/// <summary>
|
|
/// پاسخ ایجاد درگاه پرداخت سپهر
|
|
/// </summary>
|
|
public class CreateSepehrPaymentGatewayResponse
|
|
{
|
|
/// <summary>
|
|
/// توکن درگاه
|
|
/// </summary>
|
|
public string Token { get; set; }
|
|
|
|
/// <summary>
|
|
/// شناسه تراکنش
|
|
/// </summary>
|
|
public long TransactionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// URL درگاه پرداخت
|
|
/// </summary>
|
|
public string PaymentUrl { get; set; }
|
|
} |