24 lines
725 B
C#
24 lines
725 B
C#
using System.Collections.Generic;
|
|
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractExtensionPaymentMonthly:InstitutionContractExtensionPaymentOneTime
|
|
{
|
|
public List<MonthlyInstallment> Installments { get; set; }
|
|
}
|
|
public class InstitutionContractExtensionPaymentOneTime
|
|
{
|
|
/// <summary>
|
|
/// مجموع مبالغ
|
|
/// </summary>
|
|
public string TotalAmount { get; set; }
|
|
/// <summary>
|
|
/// ارزش افزوده
|
|
/// </summary>
|
|
public string Tax { get; set; }
|
|
/// <summary>
|
|
/// مبلغ قابل پرداخت
|
|
/// </summary>
|
|
public string PaymentAmount { get; set; }
|
|
} |