aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/IRecorder.cs
blob: 12e73c1f30c3f4f133f23dc07b04d39d170da019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
    }
}