diff --git a/ChatTwo/EmoteCache.cs b/ChatTwo/EmoteCache.cs index 52ee38f..2ecb3b9 100644 --- a/ChatTwo/EmoteCache.cs +++ b/ChatTwo/EmoteCache.cs @@ -32,23 +32,23 @@ public static class EmoteCache private struct Top100() { [JsonPropertyName("emote")] - public Emote Emote = default; + public Emote Emote { get; set; } [JsonPropertyName("id")] - public string Id = string.Empty; + public string Id { get; set; } } [Serializable] public struct Emote() { [JsonPropertyName("id")] - public string Id = string.Empty; + public string Id { get; set; } [JsonPropertyName("code")] - public string Code = string.Empty; + public string Code { get; set; } [JsonPropertyName("imageType")] - public string ImageType = string.Empty; + public string ImageType { get; set; } } public enum LoadingState