Simple data model for a social timeline. Defines a Timeline class with Entries, a list of TimelineEntry, and Users, a dictionary mapping string to TimelineUser.
#nullable enable annotations
namespace LichessNET.Entities.Social.Timeline;
public class Timeline
{
public List<TimelineEntry> Entries { get; set; }
public Dictionary<string, TimelineUser> Users { get; set; }
}