Code/Entities/Game/Clock.cs

Simple data model for a game's clock. It defines a Clock class with two integer properties: Increment and Limit.

#nullable enable annotations

namespace LichessNET.Entities.Game;

public class Clock
{
    public int Increment { get; set; }
    public int Limit { get; set; }
}