12 lines
229 B
C#
12 lines
229 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace LeagueAPI.Models.ReadyCheck;
|
|
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum LolMatchmakingMatchmakingReadyCheckResponse
|
|
{
|
|
Declined,
|
|
Accepted,
|
|
None,
|
|
}
|