SubtitleStreamInfo.cs 559 B

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