IHasMediaStreams.cs 744 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. /// <summary>
  5. /// This is essentially a marker interface
  6. /// </summary>
  7. public interface IHasMediaStreams
  8. {
  9. /// <summary>
  10. /// Gets or sets the media streams.
  11. /// </summary>
  12. /// <value>The media streams.</value>
  13. List<MediaStream> MediaStreams { get; set; }
  14. /// <summary>
  15. /// Gets or sets the path.
  16. /// </summary>
  17. /// <value>The path.</value>
  18. string Path { get; set; }
  19. /// <summary>
  20. /// Gets or sets the primary image path.
  21. /// </summary>
  22. /// <value>The primary image path.</value>
  23. string PrimaryImagePath { get; set; }
  24. }
  25. }