Files
Backend-Api/AccountManagement.Application.Contracts/Task/TaskSearchModel.cs
2024-07-24 16:13:54 +03:30

19 lines
618 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 TypeOfTask { get; set; }
public string GeneralSearch { get; set; }
}