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