namespace API.DTOs.Uploads;
public class UploadFileDto
{
///
/// Id of the Entity
///
public required int Id { get; set; }
///
/// Base Url encoding of the file to upload from (can be null)
///
public required string Url { get; set; }
///
/// Lock the cover or not
///
public bool LockCover { get; set; } = true;
}