Simple data model for a chess position evaluation. It stores search depth, FEN string, node count 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; }
}