Simple data class representing a game clock. It stores two integer properties: Increment (per-move increment) and Limit (base time or time limit).
#nullable enable annotations
namespace LichessNET.Entities.Game;
public class Clock
{
public int Increment { get; set; }
public int Limit { get; set; }
}