Simple data model class in the LichessNET.Entities.Social namespace that holds optional links for a users Twitch and YouTube channels. It defines two nullable string properties, Twitch and YouTube.
#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; }
}