You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
833 B
33 lines
833 B
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Library;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
public interface ILiveTvRecording : IHasImages, IHasMediaSources, IHasUserData, ILiveTvItem
|
|
{
|
|
string MediaType { get; }
|
|
|
|
string Container { get; }
|
|
|
|
RecordingInfo RecordingInfo { get; set; }
|
|
|
|
long? RunTimeTicks { get; set; }
|
|
|
|
string GetClientTypeName();
|
|
|
|
bool IsParentalAllowed(User user);
|
|
|
|
Task<ItemUpdateType> RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken);
|
|
|
|
PlayAccess GetPlayAccess(User user);
|
|
|
|
bool CanDelete();
|
|
|
|
bool CanDelete(User user);
|
|
}
|
|
}
|