22 lines
525 B
C#
22 lines
525 B
C#
using System.Collections.Generic;
|
||
|
||
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
||
|
||
/// <summary>
|
||
/// لیست قرارداد های موسسه
|
||
/// </summary>
|
||
public class GetInstitutionContractListViewModel
|
||
{
|
||
/// <summary>
|
||
/// بدهی کل
|
||
/// </summary>
|
||
public double TotalDebt { get; set; }
|
||
|
||
/// <summary>
|
||
/// مبلغ قرارداد ها
|
||
/// </summary>
|
||
public double TotalAmount { get; set; }
|
||
|
||
public List<GetInstitutionContractListItemsViewModel> Items { get; set; }
|
||
|
||
} |