Files
Backend-Api/AccountManagement.Application.Contracts/Ticket/TicketSearchModel.cs
2024-08-24 19:13:34 +03:30

25 lines
536 B
C#

namespace AccountManagement.Application.Contracts.Ticket;
public class TicketSearchModel
{
public int PageIndex { get; set; }
public string TicketNumber { get; set; }
public long WorkshopId { get; set; }
public long ClientAccountId { get; set; }
public string StartDate { get; set; }
public string EndDate { get; set; }
public string ContractingPartyName { get; set; }
public string OneDay { get; set; }
public string GeneralSearch { get; set; }
public string Status { get; set; }
}