Entities/Social/Stream/LiveStreamer.cs

A plain data model class representing a live streamer on a social/streaming system. It contains properties for Id, Name, Title, a Patron flag, and nested Stream and Streamer objects.

#nullable enable annotations

namespace LichessNET.Entities.Social.Stream;

public class LiveStreamer
{
    public string Id { get; set; }
    public string Name { get; set; }
    public string Title { get; set; }
    public bool Patron { get; set; }
    public Stream Stream { get; set; }
    public Streamer Streamer { get; set; }
}