Files
zap-stream-api/NostrStreamer/Services/StreamManager/StreamInfo.cs
2023-08-01 11:25:31 +01:00

15 lines
329 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!;
public string EdgeIp { get; init; } = null!;
}