SubtitleStreamInfo.cs 533 B

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