25 lines
536 B
C#
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; }
|
|
|
|
} |