17 lines
273 B
C#
17 lines
273 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace LeagueAPI.Models.ChampSelect;
|
|
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum ChampSelectSwapState
|
|
{
|
|
ACCEPTED,
|
|
CANCELLED,
|
|
DECLINED,
|
|
SENT,
|
|
RECEIVED,
|
|
INVALID,
|
|
BUSY,
|
|
AVAILABLE
|
|
}
|