using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.FinancialStatment;
public class ClientFinancialStatementViewModel
{
///
/// آیدی FinancialStatement
///
public long Id { get; set; }
///
/// نام طرف حساب
///
public string ContractingPartyName { get; set; }
///
/// جمع بدهکاری
///
public double TotalDebt { get; set; }
///
/// جمع بستانکاری
///
public double TotalCredit { get; set; }
///
/// مبلغ قابل پرداخت
///
public double TotalAmountPayable { get; set; }
///
/// تراکنش ها
///
public List Transactions { get; set; }
}