BasePluginFolder.cs 467 B

123456789101112131415
  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. }
  15. }