jellyfin/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/IRecorder.cs
2016-02-12 02:01:38 -05:00

12 lines
333 B
C#

using System;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
{
public interface IRecorder
{
Task Record(MediaSourceInfo mediaSource, string targetFile, Action onStarted, CancellationToken cancellationToken);
}
}