aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/MediaInfo/SubtitleTrackInfo.cs
blob: d3a3bb1d0be0d10f21e1149ddb01eed87dc3a1b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;

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

        public SubtitleTrackInfo()
        {
            TrackEvents = new SubtitleTrackEvent[] { };
        }
    }
}