ICollectionFolder.cs 619 B

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