jellyfin/MediaBrowser.Controller/Entities/BasePluginFolder.cs

29 lines
811 B
C#
Raw Normal View History

using MediaBrowser.Model.Entities;
2013-02-21 02:33:05 +01: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 02:33:05 +01:00
{
2013-05-02 04:44:52 +02:00
/// <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;
}
2013-02-21 02:33:05 +01:00
}
2013-06-13 22:15:50 +02:00
protected BasePluginFolder()
{
DisplayMediaType = "CollectionFolder";
}
2013-02-21 02:33:05 +01:00
}
}