jellyfin-server/MediaBrowser.Controller/Entities/BasePluginFolder.cs

21 lines
599 B
C#
Raw Normal View History


2013-02-21 01:33:05 +00: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>
public abstract class BasePluginFolder : Folder, ICollectionFolder, IByReferenceItem
2013-02-21 01:33:05 +00:00
{
2013-06-13 20:15:50 +00:00
protected BasePluginFolder()
{
DisplayMediaType = "CollectionFolder";
}
2014-06-14 23:13:09 +00:00
2014-06-22 05:52:31 +00:00
public virtual string CollectionType
2014-06-14 23:13:09 +00:00
{
get { return Model.Entities.CollectionType.BoxSets; }
}
2013-02-21 01:33:05 +00:00
}
}