8 lines
208 B
C#
8 lines
208 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Streaming;
|
|
|
|
public record StartFFmpegSession(string ChannelNumber, bool StartAtZero) :
|
|
IRequest<Either<BaseError, Unit>>,
|
|
IFFmpegWorkerRequest;
|