jellyfin/MediaBrowser.Controller/LiveTv/ILiveTvRecording.cs

28 lines
687 B
C#
Raw Normal View History

using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
using System.Threading;
using System.Threading.Tasks;
2014-02-23 06:52:30 +01:00
using MediaBrowser.Model.Library;
namespace MediaBrowser.Controller.LiveTv
{
public interface ILiveTvRecording : IHasImages, IHasMediaStreams
{
string ServiceName { get; set; }
string MediaType { get; }
RecordingInfo RecordingInfo { get; set; }
string GetClientTypeName();
string GetUserDataKey();
bool IsParentalAllowed(User user);
Task RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken);
2014-02-23 06:52:30 +01:00
PlayAccess GetPlayAccess(User user);
}
}