13 lines
279 B
C#
13 lines
279 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace LeagueAPI.Models.ChampSelect;
|
|
|
|
public record class BenchChampion
|
|
{
|
|
[JsonPropertyName("championId")]
|
|
public int ChampionId { get; init; }
|
|
|
|
[JsonPropertyName("isPriority")]
|
|
public bool IsPriority { get; init; }
|
|
}
|