Files
Backend-Api/AccountManagement.Application.Contracts/Ticket/ResponseTicket.cs
2024-07-10 20:25:54 +03:30

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