namespace NostrStreamer; public class Config { /// /// Ingest URL /// public Uri RtmpHost { get; init; } = null!; /// /// SRS app name /// public string App { get; init; } = "live"; /// /// SRS api server host /// public Uri SrsApiHost { get; init; } = null!; /// /// SRS Http server host /// public Uri SrsHttpHost { get; init; } = null!; /// /// Public host where playlists are located /// public Uri DataHost { get; init; } = null!; public string PrivateKey { get; init; } = null!; public string[] Relays { get; init; } = Array.Empty(); }