ICollectionFolder.cs 556 B

1234567891011121314151617181920212223
  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
  10. {
  11. string CollectionType { get; }
  12. string Path { get; }
  13. string Name { get; }
  14. Guid Id { get; }
  15. IEnumerable<string> PhysicalLocations { get; }
  16. }
  17. public interface ISupportsUserSpecificView
  18. {
  19. bool EnableUserSpecificView { get; }
  20. }
  21. }