10 lines
258 B
C#
10 lines
258 B
C#
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.Streaming.Queries
|
|
{
|
|
public record GetHlsPlaylistByChannelNumber
|
|
(string Scheme, string Host, string ChannelNumber) : IRequest<Either<BaseError, string>>;
|
|
}
|