16 lines
551 B
C#
16 lines
551 B
C#
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace AccountManagement.Application.Contracts.Ticket;
|
|
public class ResponseTicket
|
|
{
|
|
public long TicketId { get; set; }
|
|
public string Response { get; set; }
|
|
public IFormFile Document1 { get; set; }
|
|
public IFormFile Document2 { get; set; }
|
|
public IFormFile Document3 { get; set; }
|
|
public IFormFile Document4 { get; set; }
|
|
public IFormFile Document5 { get; set; }
|
|
public IFormFile Document6 { get; set; }
|
|
public IFormFile Voice { get; set; }
|
|
} |