Changed fields into properties
This commit is contained in:
@@ -5,8 +5,8 @@ namespace Discord.API.Gateway
|
|||||||
public class GuildEmojiUpdateEvent
|
public class GuildEmojiUpdateEvent
|
||||||
{
|
{
|
||||||
[JsonProperty("guild_id")]
|
[JsonProperty("guild_id")]
|
||||||
public ulong GuildId;
|
public ulong GuildId { get; set; }
|
||||||
[JsonProperty("emojis")]
|
[JsonProperty("emojis")]
|
||||||
public Emoji[] Emojis;
|
public Emoji[] Emojis { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user