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

21 lines
443 B
C#

namespace AccountManagement.Application.Contracts.Ticket;
public class TicketSearchModel
{
public string StartDate { get; set; }
public string EndDate { get; set; }
public string ContractingPartyName { get; set; }
public string OneDay { get; set; }
public string IsAssigned { get; set; }
public string TypeOfTicket { get; set; }
public string Title { get; set; }
public string Status { get; set; }
}