17 lines
552 B
C#
17 lines
552 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AccountManagement.Application.Contracts.Media;
|
|
|
|
namespace AccountManagement.Application.Contracts.Ticket;
|
|
|
|
public class AdminResponseViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string FullName { get; set; }
|
|
public string IsActive { get; set; }
|
|
public long TicketId { get; set; }
|
|
public string Response { get; set; }
|
|
public long AdminAccountId { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
public List<MediaViewModel> MediaViewModels { get; set; }
|
|
} |