16 lines
352 B
C#
16 lines
352 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace LeagueAPI.Models.ChampSelect;
|
|
|
|
public record class ChampSelectSwapContract
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public long Id { get; init; }
|
|
|
|
[JsonPropertyName("cellId")]
|
|
public long CellId { get; init; }
|
|
|
|
[JsonPropertyName("state")]
|
|
public ChampSelectSwapState State { get; init; }
|
|
}
|