Code/Entities/Social/Stream/Stream.cs

Represents a social stream entity with three string properties: Service, Status, and Lang. It is a simple data holder likely used for deserializing or passing stream metadata.

#nullable enable annotations

namespace LichessNET.Entities.Social.Stream;

public class Stream
{
    public string Service { get; set; }
    public string Status { get; set; }
    public string Lang { get; set; }
}