namespace API.DTOs.Uploads { public class UploadFileDto { /// /// Id of the Entity /// public int Id { get; set; } /// /// Url of the file to download from (can be null) /// public string Url { get; set; } } }