ICollectionFolder.cs 599 B

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