Entities/Game/Clock.cs

Simple DTO representing a game's clock settings. It has two integer properties, Increment and Limit, used to store per-move increment and total time limit.

#nullable enable annotations

namespace LichessNET.Entities.Game;

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