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

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; }
}