Files
Backend-Api/CompanyManagment.App.Contracts/FinancialStatment/FinancialStatementSearchModel.cs
2025-08-11 15:13:31 +03:30

27 lines
654 B
C#

namespace CompanyManagment.App.Contracts.FinancialStatment;
public class FinancialStatementSearchModel
{
/// <summary>
/// از تاریخ
/// </summary>
public string FromDate { get; set; }
/// <summary>
/// تا تاریخ
/// </summary>
public string ToDate { get; set; }
/// <summary>
/// از مبلغ
/// </summary>
public double FromAmount { get; set; }
/// <summary>
/// تا مبلغ
/// </summary>
public double ToAmount { get; set; }
/// <summary>
/// نوع عملیات تراکنش
/// </summary>
public FinancialTransactionType? Type { get; set; }
}