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

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