BlurayDiscInfo.cs 1008 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using MediaBrowser.Model.Entities;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.MediaInfo
  4. {
  5. /// <summary>
  6. /// Represents the result of BDInfo output
  7. /// </summary>
  8. public class BlurayDiscInfo
  9. {
  10. /// <summary>
  11. /// Gets or sets the media streams.
  12. /// </summary>
  13. /// <value>The media streams.</value>
  14. public MediaStream[] MediaStreams { get; set; }
  15. /// <summary>
  16. /// Gets or sets the run time ticks.
  17. /// </summary>
  18. /// <value>The run time ticks.</value>
  19. public long? RunTimeTicks { get; set; }
  20. /// <summary>
  21. /// Gets or sets the files.
  22. /// </summary>
  23. /// <value>The files.</value>
  24. public string[] Files { get; set; }
  25. public string PlaylistName { get; set; }
  26. /// <summary>
  27. /// Gets or sets the chapters.
  28. /// </summary>
  29. /// <value>The chapters.</value>
  30. public double[] Chapters { get; set; }
  31. }
  32. }