Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Entities/BasePluginFolder.cs

21 lines
545 B
C#
Raw Normal View History


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>
public abstract class BasePluginFolder : Folder, ICollectionFolder, IByReferenceItem
2013-02-20 20:33:05 -05:00
{
2014-06-22 01:52:31 -04:00
public virtual string CollectionType
2014-06-14 19:13:09 -04:00
{
2014-07-29 23:31:35 -04:00
get { return null; }
2014-06-14 19:13:09 -04:00
}
2015-02-06 00:39:07 -05:00
public override bool CanDelete()
{
return false;
}
2013-02-20 20:33:05 -05:00
}
}