diff options
| author | Eric Reed <ebr@mediabrowser3.com> | 2013-03-15 15:08:49 -0400 |
|---|---|---|
| committer | Eric Reed <ebr@mediabrowser3.com> | 2013-03-15 15:08:49 -0400 |
| commit | c02ac2a8ca0a01e6951d5ccca13e98a118057505 (patch) | |
| tree | 4e1215674203c4f9eaa95671727d72a4492f62b0 /MediaBrowser.Controller/Entities/BasePluginFolder.cs | |
| parent | b86a03bbdcca3c03b2cd880e607472bc7b3d0850 (diff) | |
Manage some items as single instance throughout #54
Diffstat (limited to 'MediaBrowser.Controller/Entities/BasePluginFolder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BasePluginFolder.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BasePluginFolder.cs b/MediaBrowser.Controller/Entities/BasePluginFolder.cs index 7cabcf9f0..ca6cfd246 100644 --- a/MediaBrowser.Controller/Entities/BasePluginFolder.cs +++ b/MediaBrowser.Controller/Entities/BasePluginFolder.cs @@ -1,5 +1,6 @@ using MediaBrowser.Common.Extensions; using System; +using MediaBrowser.Model.Entities; namespace MediaBrowser.Controller.Entities { @@ -7,7 +8,7 @@ namespace MediaBrowser.Controller.Entities /// Plugins derive from and export this class to create a folder that will appear in the root along /// with all the other actual physical folders in the system. /// </summary> - public abstract class BasePluginFolder : Folder, ICollectionFolder + public abstract class BasePluginFolder : Folder, ICollectionFolder, IByReferenceItem { /// <summary> /// Gets or sets the id. |
