Code/Entities/Stats/RunStats.cs

A simple data entity implementing IGameStats that stores two integer properties, Runs and Score. It acts as a plain DTO for game run statistics.

#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; }
}