SubtitleTrackInfo.cs 302 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.MediaInfo
  3. {
  4. public class SubtitleTrackInfo
  5. {
  6. public SubtitleTrackEvent[] TrackEvents { get; set; }
  7. public SubtitleTrackInfo()
  8. {
  9. TrackEvents = new SubtitleTrackEvent[] { };
  10. }
  11. }
  12. }