7 lines
219 B
C#
7 lines
219 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Streaming;
|
|
|
|
public record GetHlsPlaylistByChannelNumber
|
|
(string Scheme, string Host, string ChannelNumber, string Mode) : IRequest<Either<BaseError, string>>;
|