aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Collections/CollectionCreationOptions.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/CollectionCreationOptions.cs
parentc85f2957d9b68bf99dbd23efb2b8421845efd157 (diff)
#715 - Support creating/editing collections (boxsets) in web client
Diffstat (limited to 'MediaBrowser.Controller/Collections/CollectionCreationOptions.cs')
-rw-r--r--MediaBrowser.Controller/Collections/CollectionCreationOptions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs b/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
index d26bf5b35..089f9b6ad 100644
--- a/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
+++ b/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
@@ -6,7 +6,7 @@ namespace MediaBrowser.Controller.Collections
{
public string Name { get; set; }
- public Guid ParentId { get; set; }
+ public Guid? ParentId { get; set; }
public bool IsLocked { get; set; }
}