30 lines
829 B
C#
30 lines
829 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CompanyManagment.App.Contracts.FinancilTransaction;
|
|
|
|
namespace CompanyManagment.App.Contracts.FinancialStatment;
|
|
|
|
public class FinancialGroupViewModel
|
|
{
|
|
public List<FinancialTransactionViewModel> TransactionList { get; set; }
|
|
public List<long> TransactionIdList { get; set; }
|
|
public int I { get; set; }
|
|
|
|
|
|
public string ThisPageDebt { get; set; }
|
|
public string ThisPageCredit { get; set; }
|
|
public string ThisPageBalance { get; set; }
|
|
|
|
public string TotalDebt { get; set; }
|
|
public string TotalCredit { get; set; }
|
|
public string TotalBalance { get; set; }
|
|
public double TotalBalanceDouble { get; set; }
|
|
|
|
public int CurrentPageNumber { get; set; }
|
|
|
|
|
|
|
|
} |