SubtitleTrackEvent.cs 328 B

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