BasePluginFolder.cs 566 B

1234567891011121314151617181920
  1. 
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// Plugins derive from and export this class to create a folder that will appear in the root along
  6. /// with all the other actual physical folders in the system.
  7. /// </summary>
  8. public abstract class BasePluginFolder : Folder, ICollectionFolder, IByReferenceItem
  9. {
  10. protected BasePluginFolder()
  11. {
  12. DisplayMediaType = "CollectionFolder";
  13. }
  14. public virtual string CollectionType
  15. {
  16. get { return null; }
  17. }
  18. }
  19. }