21 lines
857 B
C#
21 lines
857 B
C#
using System.Collections.Generic;
|
|
using AccountManagement.Application.Contracts.Account;
|
|
using AccountManagement.Application.Contracts.Media;
|
|
|
|
namespace AccountManagement.Application.Contracts.Ticket;
|
|
|
|
public class EditTicket:CreateTicket
|
|
{
|
|
public long Id { get; set; }
|
|
public List<MediaViewModel> MediaViewModels { get; set; }
|
|
public List<Response> ResponseViewModels { get; set; }
|
|
public List<AdminResponseViewModel> AdminResponseViewModels{ get; set; }
|
|
public List<ClientResponseViewModel> ClientResponseViewModels { get; set; }
|
|
public AccountViewModel Sender { get; set; }
|
|
public string WorkshopName { get; set; }
|
|
public string TicketNumber { get; set; }
|
|
public string CreationDateStr { get; set; }
|
|
public string Status { get; set; }
|
|
public bool HasTask { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
} |