Simple data model representing a game clock. It has two integer properties, Increment and Limit, likely for per-move increment and total time or move limit.
#nullable enable annotations
namespace LichessNET.Entities.Game;
public class Clock
{
public int Increment { get; set; }
public int Limit { get; set; }
}