ICollectionFolder.cs 364 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// This is just a marker interface to denote top level folders
  6. /// </summary>
  7. public interface ICollectionFolder
  8. {
  9. string CollectionType { get; }
  10. string Path { get; }
  11. IEnumerable<string> PhysicalLocations { get; }
  12. }
  13. }