From e210825e54d2199028570489ee4f3d2834676021 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 7 Jun 2014 15:46:24 -0400 Subject: update translations --- MediaBrowser.Controller/Library/ILibraryManager.cs | 10 ++++++++++ MediaBrowser.Controller/Library/IUserViewManager.cs | 13 +++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 MediaBrowser.Controller/Library/IUserViewManager.cs (limited to 'MediaBrowser.Controller/Library') diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 69dea5e745..e6f50635b3 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -332,5 +332,15 @@ namespace MediaBrowser.Controller.Library /// The items. /// IEnumerable{BaseItem}. IEnumerable ReplaceVideosWithPrimaryVersions(IEnumerable items); + + /// + /// Gets the named folder. + /// + /// The name. + /// The type. + /// Name of the sort. + /// The cancellation token. + /// Task{Folder}. + Task GetNamedView(string name, string type, string sortName, CancellationToken cancellationToken); } } \ No newline at end of file diff --git a/MediaBrowser.Controller/Library/IUserViewManager.cs b/MediaBrowser.Controller/Library/IUserViewManager.cs new file mode 100644 index 0000000000..7c352d97a7 --- /dev/null +++ b/MediaBrowser.Controller/Library/IUserViewManager.cs @@ -0,0 +1,13 @@ +using MediaBrowser.Controller.Entities; +using MediaBrowser.Model.Library; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; + +namespace MediaBrowser.Controller.Library +{ + public interface IUserViewManager + { + Task> GetUserViews(UserViewQuery query, CancellationToken cancellationToken); + } +} -- cgit v1.2.3