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

13 lines
244 B
C#

using System.Text.Json.Serialization;
namespace LeagueAPI.Models.ReadyCheck;
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum LolMatchmakingMatchmakingDodgeWarning
{
ConnectionWarning,
Penalty,
Warning,
None,
}