A simple data model for a Lichess user account's preferences. It contains a Preferences object in Prefs and a Language string.
#nullable enable annotations
namespace LichessNET.Entities.Account;
/// <summary>
/// Represents the account preferences of a user on Lichess.
/// </summary>
public class AccountPreferences
{
public Preferences Prefs { get; set; }
public string Language { get; set; }
}