Code/Entities/Teams/TeamLeader.cs

Plain POCO that models a Lichess team leader, with properties Flair, Id, Name, and Patron indicating patron status.

#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; }
}