Entities/Stats/RunStats.cs

A simple data class implementing IGameStats that stores two integer properties, Runs and Score. It represents run-related statistics for a game.

#nullable enable annotations

using LichessNET.Entities.Interfaces;

namespace LichessNET.Entities.Stats;

public class RunStats : IGameStats
{
    public int Runs { get; set; }
    public int Score { get; set; }
}