23 lines
791 B
C#
23 lines
791 B
C#
using AccountManagement.Application.Contracts.Media;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AccountManagement.Application.Contracts.Ticket;
|
|
public class Response
|
|
{
|
|
public long AdminResponseId { get; set; }
|
|
public long ClientResponseId { get; set; }
|
|
public long TicketId { get; set; }
|
|
public string FullName { get; set; }
|
|
public string ResponseMessage { get; set; }
|
|
public bool IsAdmin { get; set; }
|
|
public bool IsClient { get; set; }
|
|
public string IsActive { get; set; }
|
|
public long AdminAccountId { get; set; }
|
|
public List<MediaViewModel> MediaViewModels { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
public string CreationDateStr { get; set; }
|
|
} |