ICollectionFolder.cs 662 B

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