aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-06 00:17:13 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-06 00:17:13 -0500
commit2349c8099d04c6c0631cd33e6c74b404381946ab (patch)
treeb348b662691135dc1d7ba0ae317b9966ac54d269 /MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
parent9396f16aed2f304789324afc83e0c9f385c5f00a (diff)
start on manual collection creation
Diffstat (limited to 'MediaBrowser.Controller/Collections/CollectionCreationOptions.cs')
-rw-r--r--MediaBrowser.Controller/Collections/CollectionCreationOptions.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs b/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
new file mode 100644
index 000000000..d26bf5b35
--- /dev/null
+++ b/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
@@ -0,0 +1,13 @@
+using System;
+
+namespace MediaBrowser.Controller.Collections
+{
+ public class CollectionCreationOptions
+ {
+ public string Name { get; set; }
+
+ public Guid ParentId { get; set; }
+
+ public bool IsLocked { get; set; }
+ }
+}