Files
ersatztv/ErsatzTV.Application/Streaming/Queries/GetConcatProcessByChannelNumber.cs
T

15 lines
409 B
C#

namespace ErsatzTV.Application.Streaming.Queries
{
public record GetConcatProcessByChannelNumber : FFmpegProcessRequest
{
public GetConcatProcessByChannelNumber(string scheme, string host, string channelNumber) : base(channelNumber)
{
Scheme = scheme;
Host = host;
}
public string Scheme { get; }
public string Host { get; }
}
}