Add project files.
This commit is contained in:
21
LeagueAPI/Models/ChampSelect/ChampSelectTimer.cs
Normal file
21
LeagueAPI/Models/ChampSelect/ChampSelectTimer.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user