2014-03-07 10:53:23 -05:00
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 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>
|
2013-03-15 15:08:49 -04:00
|
|
|
|
public abstract class BasePluginFolder : Folder, ICollectionFolder, IByReferenceItem
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
2013-06-13 16:15:50 -04:00
|
|
|
|
protected BasePluginFolder()
|
|
|
|
|
|
{
|
|
|
|
|
|
DisplayMediaType = "CollectionFolder";
|
|
|
|
|
|
}
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|