Code/Entities/Social/Timeline/TimelineUser.cs

A simple data model representing a user in a social timeline. It defines Id, Name, Title and an optional Patron flag.

#nullable enable annotations

namespace LichessNET.Entities.Social.Timeline;

public class TimelineUser
{
    public string Id { get; set; }
    public string Name { get; set; }
    public string Title { get; set; }
    public bool? Patron { get; set; }
}