2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
namespace MediaBrowser.Model.MediaInfo
|
|
|
|
{
|
|
|
|
public class SubtitleTrackEvent
|
|
|
|
{
|
2021-01-08 15:03:02 -07:00
|
|
|
public SubtitleTrackEvent(string id, string text)
|
|
|
|
{
|
|
|
|
Id = id;
|
|
|
|
Text = text;
|
|
|
|
}
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string Id { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string Text { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public long StartPositionTicks { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public long EndPositionTicks { get; set; }
|
|
|
|
}
|
|
|
|
}
|