IHasSoundtracks.cs 689 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. /// <summary>
  6. /// Interface IHasSoundtracks
  7. /// </summary>
  8. public interface IHasSoundtracks
  9. {
  10. /// <summary>
  11. /// Gets or sets the soundtrack ids.
  12. /// </summary>
  13. /// <value>The soundtrack ids.</value>
  14. List<Guid> SoundtrackIds { get; set; }
  15. /// <summary>
  16. /// Gets the name.
  17. /// </summary>
  18. /// <value>The name.</value>
  19. string Name { get; }
  20. /// <summary>
  21. /// Gets the identifier.
  22. /// </summary>
  23. /// <value>The identifier.</value>
  24. Guid Id { get; }
  25. }
  26. }