MediaVersionInfo.cs 625 B

1234567891011121314151617181920212223242526
  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 LocationType LocationType { get; set; }
  10. public string Name { get; set; }
  11. public long? RunTimeTicks { get; set; }
  12. public VideoType? VideoType { get; set; }
  13. public IsoType? IsoType { get; set; }
  14. public Video3DFormat? Video3DFormat { get; set; }
  15. public List<MediaStream> MediaStreams { get; set; }
  16. }
  17. }