aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
diff options
context:
space:
mode:
authorTim Hobbs <jesus.tesh@gmail.com>2014-03-17 15:47:22 -0700
committerTim Hobbs <jesus.tesh@gmail.com>2014-03-17 15:47:22 -0700
commitcf43180a2dcab023ba6a48f37920615d7e87c599 (patch)
tree1b94ff05caf34974161595823898b8b32e1f6d24 /MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
parent7a0963129126679aad8b64cc8a36474edaca7170 (diff)
parent78acab691693d6adfac67bcf3f0617e336f801a6 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'MediaBrowser.Controller/Collections/CollectionCreationOptions.cs')
-rw-r--r--MediaBrowser.Controller/Collections/CollectionCreationOptions.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs b/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
index e147e0905..74ae42095 100644
--- a/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
+++ b/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
@@ -14,9 +14,12 @@ namespace MediaBrowser.Controller.Collections
public Dictionary<string, string> ProviderIds { get; set; }
+ public List<Guid> ItemIdList { get; set; }
+
public CollectionCreationOptions()
{
ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
+ ItemIdList = new List<Guid>();
}
}
}