* fix serving channels.m3u with missing content ratings * add hls hybrid mode
10 lines
271 B
C#
10 lines
271 B
C#
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.Streaming.Queries
|
|
{
|
|
public record GetHlsPlaylistByChannelNumber
|
|
(string Scheme, string Host, string ChannelNumber, string Mode) : IRequest<Either<BaseError, string>>;
|
|
}
|