22 lines
575 B
C#
22 lines
575 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace LeagueAPI.Models.ChampSelect;
|
|
|
|
public record class ChampSelectTimer
|
|
{
|
|
[JsonPropertyName("adjustedTimeLeftInPhase")]
|
|
public long AdjustedTimeLeftInPhase { get; init; }
|
|
|
|
[JsonPropertyName("totalTimeInPhase")]
|
|
public long TotalTimeInPhase { get; init; }
|
|
|
|
[JsonPropertyName("phase")]
|
|
public string? Phase { get; init; }
|
|
|
|
[JsonPropertyName("isInfinite")]
|
|
public bool IsInfinite { get; init; }
|
|
|
|
[JsonPropertyName("internalNowInEpochMs")]
|
|
public ulong InternalNowInEpochMs { get; init; }
|
|
}
|