Code/Entities/Analysis/PrincipalVariation.cs

Simple data model representing a chess engine principal variation. It has an integer centipawn score property Cp and a string Moves property containing the PV moves.

#nullable enable annotations

namespace LichessNET.Entities.Analysis;

public class PrincipalVariation
{
    public int Cp { get; set; }
    public string Moves { get; set; }
}