jellyfin/MediaBrowser.Model/MediaInfo/SubtitleTrackInfo.cs
2019-01-13 20:26:15 +01:00

13 lines
267 B
C#

namespace MediaBrowser.Model.MediaInfo
{
public class SubtitleTrackInfo
{
public SubtitleTrackEvent[] TrackEvents { get; set; }
public SubtitleTrackInfo()
{
TrackEvents = new SubtitleTrackEvent[] { };
}
}
}