Entities/Social/Stream/Stream.cs

A simple DTO representing a social stream with three 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; }
}