diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-07-19 23:43:13 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-07-19 23:43:13 -0400 |
| commit | 3178896004540c4a5884b9235a67ffbe3f58af0b (patch) | |
| tree | 45ef94788378e2eaba642c2dc7692b75aed1d7b9 /MediaBrowser.MediaEncoding/Subtitles/SubtitleTrackInfo.cs | |
| parent | 3bb65c6f99ed84cf01935dc8a2cb2c3663273e8c (diff) | |
update subtitle methods
Diffstat (limited to 'MediaBrowser.MediaEncoding/Subtitles/SubtitleTrackInfo.cs')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Subtitles/SubtitleTrackInfo.cs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/MediaBrowser.MediaEncoding/Subtitles/SubtitleTrackInfo.cs b/MediaBrowser.MediaEncoding/Subtitles/SubtitleTrackInfo.cs deleted file mode 100644 index 67d70ed6eb..0000000000 --- a/MediaBrowser.MediaEncoding/Subtitles/SubtitleTrackInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System.Collections.Generic; - -namespace MediaBrowser.MediaEncoding.Subtitles -{ - public class SubtitleTrackInfo - { - public List<SubtitleTrackEvent> TrackEvents { get; set; } - - public SubtitleTrackInfo() - { - TrackEvents = new List<SubtitleTrackEvent>(); - } - } - - public class SubtitleTrackEvent - { - public string Id { get; set; } - public string Text { get; set; } - public long StartPositionTicks { get; set; } - public long EndPositionTicks { get; set; } - } -} |
