21 lines
665 B
C#
21 lines
665 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Security.AccessControl;
|
|
|
|
namespace AccountManagement.Application.Contracts.Ticket;
|
|
|
|
public class TicketViewModel:EditTicket
|
|
{
|
|
public List<AdminResponseViewModel> AdminResponseViewModels { get; set; }
|
|
public List<ClientResponseViewModel> 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; }
|
|
|
|
|
|
|
|
} |