Code/Entities/Social/Stream/Stream.cs

Simple POCO representing a social stream. It has three public string properties: Service, Status, and Lang.

#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; }
}