13 lines
264 B
C#
13 lines
264 B
C#
namespace MediaBrowser.Model.MediaInfo
|
|
{
|
|
public class SubtitleTrackInfo
|
|
{
|
|
public SubtitleTrackEvent[] TrackEvents { get; set; }
|
|
|
|
public SubtitleTrackInfo()
|
|
{
|
|
TrackEvents = new SubtitleTrackEvent[] { };
|
|
}
|
|
}
|
|
}
|