21 lines
443 B
C#
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; }
|
|
|
|
} |