Entities/Analysis/PrincipalVariation.cs

Represents a principal variation from a chess engine analysis, holding an integer centipawn evaluation (Cp) and a Moves string containing the move sequence.

#nullable enable annotations

namespace LichessNET.Entities.Analysis;

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