ICollectionFolder.cs 432 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  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
  9. {
  10. string CollectionType { get; }
  11. string Path { get; }
  12. string Name { get; }
  13. Guid Id { get; }
  14. IEnumerable<string> PhysicalLocations { get; }
  15. }
  16. }