23 lines
571 B
C#
23 lines
571 B
C#
namespace CompanyManagment.App.Contracts.PaymentTransaction;
|
|
|
|
public class CreatePaymentTransaction
|
|
{
|
|
/// <summary>
|
|
/// شناسه طرف قرارداد
|
|
/// </summary>
|
|
public long ContractingPartyId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// مبلغ تراکنش
|
|
/// </summary>
|
|
public double Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// مسیر برگشت پس از پرداخت
|
|
/// </summary>
|
|
public string CallBackUrl { get; set; }
|
|
|
|
public PaymentTransactionSource Source { get; set; }
|
|
public long SourceId { get; set; }
|
|
} |