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.
27 lines
732 B
27 lines
732 B
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Entities;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
public interface ILiveTvRecording : IHasImages, IHasMediaStreams
|
|
{
|
|
string ServiceName { get; set; }
|
|
|
|
string MediaType { get; }
|
|
|
|
LocationType LocationType { get; }
|
|
|
|
RecordingInfo RecordingInfo { get; set; }
|
|
|
|
string GetClientTypeName();
|
|
|
|
string GetUserDataKey();
|
|
|
|
bool IsParentalAllowed(User user);
|
|
|
|
Task<bool> RefreshMetadata(CancellationToken cancellationToken, bool forceSave = false, bool forceRefresh = false, bool allowSlowProviders = true, bool resetResolveArgs = true);
|
|
}
|
|
}
|