Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/RollCallSearchModel.cs
2024-08-29 15:00:22 +03:30

27 lines
707 B
C#

using System;
namespace CompanyManagment.App.Contracts.RollCall;
public class RollCallSearchModel
{
public long Id { get; set; }
public long WorkshopId { get; set; }
public long EmployeeId { get; set; }
public string EmployeeFullName { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public int Year { get; set; }
public int Month { get; set; }
public int PageIndex { get; set; }
#region Pooya
public int DateIndex { get; set; }
#endregion
#region Mahan
public string StarDateFa { get; set; }
public string EndDateFa { get; set; }
public string ExactDateFa { get; set; }
#endregion
}