ICollectionFolder.cs 563 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// This is just a marker interface to denote top level folders
  6. /// </summary>
  7. public interface ICollectionFolder : IHasCollectionType
  8. {
  9. string Path { get; }
  10. string Name { get; }
  11. Guid Id { get; }
  12. string[] PhysicalLocations { get; }
  13. }
  14. public interface ISupportsUserSpecificView
  15. {
  16. bool EnableUserSpecificView { get; }
  17. }
  18. public interface IHasCollectionType
  19. {
  20. string CollectionType { get; }
  21. }
  22. }