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