SubtitleTrackInfo.cs 264 B

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