namespace ZelWiki.Models.DataModels { public class UpsertEmoji { public int? Id { get; set; } public string Name { get; set; } = string.Empty; public List Categories { get; set; } = new(); public byte[]? ImageData { get; set; } public string MimeType { get; set; } = string.Empty; } }