using System; using System.Collections.Generic; using System.Security.AccessControl; namespace AccountManagement.Application.Contracts.Ticket; public class TicketViewModel:EditTicket { public List AdminResponseViewModels { get; set; } public List ClientResponseViewModels { get; set; } public string Status { get; set; } public string CreationDateTime { get; set; } public DateTime CreationDateTimeGr { get; set; } public long? TaskId { get; set; } public bool HasTask { get; set; } public string RawTicketNumber { get; set; } public int PageIndex { get; set; } }