A simple data entity representing a user’s streaming links. It has two nullable string properties, Twitch and YouTube, to hold links or identifiers.
#nullable enable annotations
namespace LichessNET.Entities.Social;
/// <summary>
/// Represents streaming information related to a user, containing details of Twitch and YouTube channels.
/// </summary>
public class StreamingInfo
{
/// <summary>
/// The link to the Twitch Account of the user
/// </summary>
public string? Twitch { get; set; }
/// <summary>
/// The link to the YouTube Account of the user
/// </summary>
public string? YouTube { get; set; }
}