27 lines
654 B
C#
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; }
|
|
|
|
|
|
} |