diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-15 11:17:46 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-15 11:17:46 -0400 |
| commit | 9a6afa92889c57e5f7b0e8cc937376fe6393ebb4 (patch) | |
| tree | f0bd1bf7a2498328ef07e0fcdc648d2475e5c0f0 /MediaBrowser.Controller/Collections/ICollectionManager.cs | |
| parent | d55af4f5292236317f572e0bddfe9575a21c4662 (diff) | |
Add new params to collection creation
Diffstat (limited to 'MediaBrowser.Controller/Collections/ICollectionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Collections/ICollectionManager.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Collections/ICollectionManager.cs b/MediaBrowser.Controller/Collections/ICollectionManager.cs index d7bc178ad3..af65bbacaf 100644 --- a/MediaBrowser.Controller/Collections/ICollectionManager.cs +++ b/MediaBrowser.Controller/Collections/ICollectionManager.cs @@ -1,4 +1,5 @@ -using System; +using MediaBrowser.Controller.Entities.Movies; +using System; using System.Collections.Generic; using System.Threading.Tasks; @@ -11,7 +12,7 @@ namespace MediaBrowser.Controller.Collections /// </summary> /// <param name="options">The options.</param> /// <returns>Task.</returns> - Task CreateCollection(CollectionCreationOptions options); + Task<BoxSet> CreateCollection(CollectionCreationOptions options); /// <summary> /// Adds to collection. |
