Entities/Teams/TeamMember.cs

A simple POCO representing a Lichess team member with ID, username, title, patron flag and a joined timestamp field.

#nullable enable annotations

namespace LichessNET.Entities.Teams;

/// <summary>
/// Represents a member of a Lichess team.
/// </summary>
public class TeamMember
{
    public string ID { get; set; } = null!;
    public string Username { get; set; } = null!;
    public string Title { get; set; } = null!;
    public bool Patron { get; set; }
    public ulong joinedTeamAt { get; set; }
}