SubtitleStreamInfo.cs 564 B

123456789101112131415161718
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  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. }