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

29 lines
923 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.FinancilTransaction;
public class CreateFinancialTransaction
{
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 string DescriptionOption { 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; }
public int PageNumber { get; set; }
public string Today { get; set; }
public string DeptorString { get; set; }
public string CreditorString { get; set; }
}