ICollectionFolder.cs 626 B

1234567891011121314151617181920212223242526272829303132
  1. #nullable disable
  2. #pragma warning disable CA1819, CS1591
  3. using System;
  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. }