using Newtonsoft.Json; namespace Maki.Structures.Messages { /// /// Discord API Emoji structure /// internal struct Emoji { /// /// id of emoji (if custom emoji) /// [JsonProperty("id")] public ulong? Id; /// /// name of emoji /// [JsonProperty("name")] public string Name; /// /// roles this emoji is active for /// [JsonProperty("roles")] public ulong[] Roles; /// /// whether this emoji must be wrapped in colons /// [JsonProperty("require_colons")] public bool RequiresColons; /// /// whether this emoji is managed /// [JsonProperty("managed")] public bool IsManaged; } }