Files
Backend-Api/CompanyManagment.App.Contracts/FinancilTransaction/FinancialTransactionSearchModel.cs
2024-07-05 21:36:15 +03:30

19 lines
637 B
C#

using System;
namespace CompanyManagment.App.Contracts.FinancilTransaction;
public class FinancialTransactionSearchModel
{
public long Id { get; set; }
public long FinancialStatementId { get; set; }
public DateTime TdateGr { get; set; }
public string TdateFa { get; set; }
public string Description { get; set; }
public string TypeOfTransaction { get; set; }
public double Deptor { get; set; }
public double Creditor { get; set; }
public double Balance { get; set; }
public bool SentSms { get; set; }
public string MessageText { get; set; }
public string SentSmsDateFa { get; set; }
}