Code/Entities/Social/Stream/Streamer.cs

Plain data model for a social streamer. Declares a Streamer class with 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; }
}