Code/Entities/Social/Timeline/TimelineUser.cs

Plain data model for a social timeline user in the LichessNET project. It declares Id, Name, Title and an optional Patron flag, all as public get/set properties.

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