update subtitle methods

This commit is contained in:
Luke Pulverenti
2015-07-19 23:43:13 -04:00
parent 3bb65c6f99
commit 3178896004
24 changed files with 65 additions and 35 deletions

View File

@@ -0,0 +1,11 @@

namespace MediaBrowser.Model.MediaInfo
{
public class SubtitleTrackEvent
{
public string Id { get; set; }
public string Text { get; set; }
public long StartPositionTicks { get; set; }
public long EndPositionTicks { get; set; }
}
}