using System.Text.Json.Serialization; namespace LeagueAPI.Models.ReadyCheck; [JsonConverter(typeof(JsonStringEnumConverter))] public enum LolMatchmakingMatchmakingReadyCheckResponse { Declined, Accepted, None, }