2015-07-20 03:43:13 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.MediaInfo
|
|
|
|
|
{
|
|
|
|
|
public class SubtitleTrackInfo
|
|
|
|
|
{
|
2017-08-19 19:43:35 +00:00
|
|
|
|
public SubtitleTrackEvent[] TrackEvents { get; set; }
|
2015-07-20 03:43:13 +00:00
|
|
|
|
|
|
|
|
|
public SubtitleTrackInfo()
|
|
|
|
|
{
|
2017-08-19 19:43:35 +00:00
|
|
|
|
TrackEvents = new SubtitleTrackEvent[] { };
|
2015-07-20 03:43:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|