jellyfin/MediaBrowser.Model/MediaInfo/SubtitleTrackInfo.cs

13 lines
264 B
C#
Raw Normal View History

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