2025-01-21 09:58:26 +01:00

10 lines
224 B
C#

using Microsoft.AspNetCore.Http;
namespace Application.DataTransferObjects.ExcelImport;
public class ExcelImportRequest
{
public required IFormFile ExcelFile { get; set; }
public Guid AllianceId { get; set; }
}