Files
zap-stream-api/NostrStreamer/Services/StreamManager/StreamInfo.cs
2023-07-25 17:45:44 +01:00

13 lines
279 B
C#

namespace NostrStreamer.Services.StreamManager;
public class StreamInfo
{
public string App { get; init; } = null!;
public string Variant { get; init; } = null!;
public string StreamKey { get; init; } = null!;
public string ClientId { get; init; } = null!;
}