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

20 lines
688 B
C#

using System.Collections.Generic;
using Microsoft.AspNetCore.Http;
namespace AccountManagement.Application.Contracts.Ticket;
public class CreateTicket
{
public string Title { get; set; }
public string Description { get; set; }
public long SenderId { get; set; }
public string ContractingPartyName { get; set; }
public string TicketType { 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 ScreenShot { get; set; }
public IFormFile Voice { get; set; }
}