Files
Backend-Api/AccountManagement.Application.Contracts/Task/TaskSearchModel.cs
2024-07-10 20:25:54 +03:30

18 lines
574 B
C#

namespace AccountManagement.Application.Contracts.Task;
public class TaskSearchModel
{
public int PageIndex { get; set; }
public string StartDate { get; set; }
public string EndDate { get; set; }
public long AccountId { get; set; }
public string IsDoneRequest { get; set; }
public string IsDone { get; set; }
public string IsCanceled { get; set; }
public string IsCancelRequest { get; set; }
public string IsTimeRequest { get; set; }
public string TimeRequestAccepted { get; set; }
public string TypeOfTicket { get; set; }
}