aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Collections/CollectionCreationOptions.cs')
-rw-r--r--MediaBrowser.Controller/Collections/CollectionCreationOptions.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs b/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
deleted file mode 100644
index 7a387e319..000000000
--- a/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using MediaBrowser.Model.Entities;
-using System;
-using System.Collections.Generic;
-
-namespace MediaBrowser.Controller.Collections
-{
- public class CollectionCreationOptions : IHasProviderIds
- {
- public string Name { get; set; }
-
- public Guid? ParentId { get; set; }
-
- public bool IsLocked { get; set; }
-
- public Dictionary<string, string> ProviderIds { get; set; }
-
- public string[] ItemIdList { get; set; }
- public string[] UserIds { get; set; }
-
- public CollectionCreationOptions()
- {
- ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
- ItemIdList = new string[] { };
- UserIds = new string[] { };
- }
- }
-}