aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Collections/ICollectionManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-07 10:53:23 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-07 10:53:23 -0500
commite00985d07ca3923f7f558b8592c0d092842bff5d (patch)
treed95f5cc3dbf068fc9416441de9f925ac39ee7f5d /MediaBrowser.Controller/Collections/ICollectionManager.cs
parentc85f2957d9b68bf99dbd23efb2b8421845efd157 (diff)
#715 - Support creating/editing collections (boxsets) in web client
Diffstat (limited to 'MediaBrowser.Controller/Collections/ICollectionManager.cs')
-rw-r--r--MediaBrowser.Controller/Collections/ICollectionManager.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/MediaBrowser.Controller/Collections/ICollectionManager.cs b/MediaBrowser.Controller/Collections/ICollectionManager.cs
index a1e6b2c120..d7bc178ad3 100644
--- a/MediaBrowser.Controller/Collections/ICollectionManager.cs
+++ b/MediaBrowser.Controller/Collections/ICollectionManager.cs
@@ -1,4 +1,5 @@
using System;
+using System.Collections.Generic;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Collections
@@ -16,16 +17,16 @@ namespace MediaBrowser.Controller.Collections
/// Adds to collection.
/// </summary>
/// <param name="collectionId">The collection identifier.</param>
- /// <param name="itemId">The item identifier.</param>
+ /// <param name="itemIds">The item ids.</param>
/// <returns>Task.</returns>
- Task AddToCollection(Guid collectionId, Guid itemId);
+ Task AddToCollection(Guid collectionId, IEnumerable<Guid> itemIds);
/// <summary>
/// Removes from collection.
/// </summary>
/// <param name="collectionId">The collection identifier.</param>
- /// <param name="itemId">The item identifier.</param>
+ /// <param name="itemIds">The item ids.</param>
/// <returns>Task.</returns>
- Task RemoveFromCollection(Guid collectionId, Guid itemId);
+ Task RemoveFromCollection(Guid collectionId, IEnumerable<Guid> itemIds);
}
}