Files
ersatztv/ErsatzTV.Application/Streaming/Queries/GetConcatProcessByChannelNumber.cs
T
2021-02-08 21:13:53 -06:00

15 lines
406 B
C#

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