Files
LeagueARAMTracker/LeagueAPI/Models/ReadyCheck/LolMatchmakingMatchmakingReadyCheckResponse.cs
2026-03-08 20:45:01 +01:00

12 lines
229 B
C#

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