ILibraryItem.cs 587 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// Interface ILibraryItem
  6. /// </summary>
  7. public interface ILibraryItem
  8. {
  9. /// <summary>
  10. /// Gets the name.
  11. /// </summary>
  12. /// <value>The name.</value>
  13. string Name { get; }
  14. /// <summary>
  15. /// Gets the id.
  16. /// </summary>
  17. /// <value>The id.</value>
  18. Guid Id { get; }
  19. /// <summary>
  20. /// Gets the path.
  21. /// </summary>
  22. /// <value>The path.</value>
  23. string Path { get; }
  24. }
  25. }