Entities/Teams/TeamLeader.cs

Represents a team leader in the LichessNET.Entities.Social namespace. It is a plain DTO with four properties: Flair, Id, Name (all strings) and Patron (bool).

#nullable enable annotations

namespace LichessNET.Entities.Social;

/// <summary>
/// Represents a leader of a team on Lichess, providing properties for flair, identification, name, and patron status.
/// </summary>
public class TeamLeader
{
    public string Flair { get; set; }
    public string Id { get; set; }
    public string Name { get; set; }
    public bool Patron { get; set; }
}