MediaVersionInfo.cs 715 B

123456789101112131415161718192021222324252627282930
  1. using MediaBrowser.Model.Entities;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.Dto
  4. {
  5. public class MediaSourceInfo
  6. {
  7. public string Id { get; set; }
  8. public string Path { get; set; }
  9. public string Container { get; set; }
  10. public LocationType LocationType { get; set; }
  11. public string Name { get; set; }
  12. public long? RunTimeTicks { get; set; }
  13. public VideoType? VideoType { get; set; }
  14. public IsoType? IsoType { get; set; }
  15. public Video3DFormat? Video3DFormat { get; set; }
  16. public List<MediaStream> MediaStreams { get; set; }
  17. public int? Bitrate { get; set; }
  18. }
  19. }