Files
ZelWiki/TightWiki.Models/DataModels/UpsertEmoji.cs
2025-01-22 23:31:03 +08:00

12 lines
350 B
C#

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