jellyfin/MediaBrowser.Model/MediaInfo/SubtitleTrackInfo.cs

13 lines
267 B
C#
Raw Normal View History

namespace MediaBrowser.Model.MediaInfo
2018-12-27 18:27:57 -05:00
{
public class SubtitleTrackInfo
{
public SubtitleTrackEvent[] TrackEvents { get; set; }
public SubtitleTrackInfo()
{
TrackEvents = new SubtitleTrackEvent[] { };
}
}
}