Entities/Social/Stream/Streamer.cs

A plain data model for a streaming entity in the social/stream namespace. It declares string properties for Name, Headline, Description, Twitch, YouTube and Image.

#nullable enable annotations

namespace LichessNET.Entities.Social.Stream;

public class Streamer
{
    public string Name { get; set; }
    public string Headline { get; set; }
    public string Description { get; set; }
    public string Twitch { get; set; }
    public string YouTube { get; set; }
    public string Image { get; set; }
}