2021-01-08 23:03:02 +01:00
|
|
|
#nullable enable
|
2020-02-04 01:49:27 +01:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
2019-10-26 22:53:53 +02:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2019-01-13 21:02:23 +01:00
|
|
|
namespace MediaBrowser.Model.MediaInfo
|
2018-12-27 18:27:57 -05:00
|
|
|
{
|
|
|
|
|
public class SubtitleTrackInfo
|
|
|
|
|
{
|
|
|
|
|
public SubtitleTrackInfo()
|
|
|
|
|
{
|
2019-10-26 22:53:53 +02:00
|
|
|
TrackEvents = Array.Empty<SubtitleTrackEvent>();
|
2018-12-27 18:27:57 -05:00
|
|
|
}
|
2021-02-20 23:13:04 +01:00
|
|
|
|
|
|
|
|
public IReadOnlyList<SubtitleTrackEvent> TrackEvents { get; set; }
|
2018-12-27 18:27:57 -05:00
|
|
|
}
|
|
|
|
|
}
|