namespace ComiServ.Models { public class ComicMetadataUpdate { public string? Title { get; set; } public string? Description { get; set; } public List? Tags { get; set; } public List? Authors { get; set; } } }