MediaInfo.cs 623 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. public class MediaInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the media streams.
  8. /// </summary>
  9. /// <value>The media streams.</value>
  10. public List<MediaStream> MediaStreams { get; set; }
  11. /// <summary>
  12. /// Gets or sets the format.
  13. /// </summary>
  14. /// <value>The format.</value>
  15. public string Format { get; set; }
  16. public int? TotalBitrate { get; set; }
  17. public MediaInfo()
  18. {
  19. MediaStreams = new List<MediaStream>();
  20. }
  21. }
  22. }