diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-05-20 22:46:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-20 22:46:40 +0200 |
| commit | a7b7ff000bdff1f089dc9d68347058fe8314f509 (patch) | |
| tree | c1d9f36e3fc4bb6679f9793374370e3de553fc25 /MediaBrowser.Controller/Channels/ISearchableChannel.cs | |
| parent | ee7a95e088520f835a4d179c7c5faec5eaa8f9ff (diff) | |
| parent | e8790bfa963284863dc1126a83df72309ec30561 (diff) | |
Merge branch 'master' into tmdb-person-language
Diffstat (limited to 'MediaBrowser.Controller/Channels/ISearchableChannel.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/ISearchableChannel.cs | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/MediaBrowser.Controller/Channels/ISearchableChannel.cs b/MediaBrowser.Controller/Channels/ISearchableChannel.cs index b58446fc4..b87943a6e 100644 --- a/MediaBrowser.Controller/Channels/ISearchableChannel.cs +++ b/MediaBrowser.Controller/Channels/ISearchableChannel.cs @@ -5,7 +5,6 @@ using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; -using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.Channels { @@ -19,35 +18,4 @@ namespace MediaBrowser.Controller.Channels /// <returns>Task{IEnumerable{ChannelItemInfo}}.</returns> Task<IEnumerable<ChannelItemInfo>> Search(ChannelSearchInfo searchInfo, CancellationToken cancellationToken); } - - public interface ISupportsLatestMedia - { - /// <summary> - /// Gets the latest media. - /// </summary> - /// <param name="request">The request.</param> - /// <param name="cancellationToken">The cancellation token.</param> - /// <returns>Task{IEnumerable{ChannelItemInfo}}.</returns> - Task<IEnumerable<ChannelItemInfo>> GetLatestMedia(ChannelLatestMediaSearch request, CancellationToken cancellationToken); - } - - public interface ISupportsDelete - { - bool CanDelete(BaseItem item); - - Task DeleteItem(string id, CancellationToken cancellationToken); - } - - public interface IDisableMediaSourceDisplay - { - } - - public interface ISupportsMediaProbe - { - } - - public interface IHasFolderAttributes - { - string[] Attributes { get; } - } } |
