BlurayDiscInfo.cs 1.1 KB

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