using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Diligent.WebAPI.Contracts.DTOs.File { public class CreateFileRequest { public string Title { get; set; } public int CategoryId { get; set; } public int[] TagsIds { get; set; } public IFormFile FileToUpload { get; set; } public string? Note { get; set; } } }