diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-07 10:53:23 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-07 10:53:23 -0500 |
| commit | e00985d07ca3923f7f558b8592c0d092842bff5d (patch) | |
| tree | d95f5cc3dbf068fc9416441de9f925ac39ee7f5d /MediaBrowser.Controller/Entities/BasePluginFolder.cs | |
| parent | c85f2957d9b68bf99dbd23efb2b8421845efd157 (diff) | |
#715 - Support creating/editing collections (boxsets) in web client
Diffstat (limited to 'MediaBrowser.Controller/Entities/BasePluginFolder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BasePluginFolder.cs | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/MediaBrowser.Controller/Entities/BasePluginFolder.cs b/MediaBrowser.Controller/Entities/BasePluginFolder.cs index 8f70710003..29d66718c4 100644 --- a/MediaBrowser.Controller/Entities/BasePluginFolder.cs +++ b/MediaBrowser.Controller/Entities/BasePluginFolder.cs @@ -1,5 +1,4 @@ -using MediaBrowser.Model.Entities; - + namespace MediaBrowser.Controller.Entities { /// <summary> @@ -8,18 +7,6 @@ namespace MediaBrowser.Controller.Entities /// </summary> public abstract class BasePluginFolder : Folder, ICollectionFolder, IByReferenceItem { - /// <summary> - /// Gets or sets the type of the location. - /// </summary> - /// <value>The type of the location.</value> - public override LocationType LocationType - { - get - { - return LocationType.Virtual; - } - } - protected BasePluginFolder() { DisplayMediaType = "CollectionFolder"; |
