SubtitleTrackEvent.cs 307 B

123456789101112
  1. #pragma warning disable CS1591
  2. namespace MediaBrowser.Model.MediaInfo
  3. {
  4. public class SubtitleTrackEvent
  5. {
  6. public string Id { get; set; }
  7. public string Text { get; set; }
  8. public long StartPositionTicks { get; set; }
  9. public long EndPositionTicks { get; set; }
  10. }
  11. }