SubtitleStreamInfo.cs 500 B

123456789101112131415
  1. namespace MediaBrowser.Model.Dlna
  2. {
  3. public class SubtitleStreamInfo
  4. {
  5. public string Url { get; set; }
  6. public string Language { get; set; }
  7. public string Name { get; set; }
  8. public bool IsForced { get; set; }
  9. public string Format { get; set; }
  10. public string DisplayTitle { get; set; }
  11. public int Index { get; set; }
  12. public SubtitleDeliveryMethod DeliveryMethod { get; set; }
  13. public bool IsExternalUrl { get; set; }
  14. }
  15. }