Data model for a chess analysis position. Stores search depth, FEN string, number of nodes evaluated and a list of principal variations.
#nullable enable annotations
namespace LichessNET.Entities.Analysis;
public class PositionEvaluation
{
public int Depth { get; set; }
public string Fen { get; set; }
public int Knodes { get; set; }
public List<PrincipalVariation> Pvs { get; set; }
}