Files
Backend-Api/AccountManagement.Application.Contracts/Task/TaskSearchModel.cs
2024-07-05 21:36:15 +03:30

16 lines
527 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 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; }
}