aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Lyrics/LyricLine.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Lyrics/LyricLine.cs')
-rw-r--r--MediaBrowser.Controller/Lyrics/LyricLine.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/MediaBrowser.Controller/Lyrics/LyricLine.cs b/MediaBrowser.Controller/Lyrics/LyricLine.cs
index eb5ff9972..c406f92fc 100644
--- a/MediaBrowser.Controller/Lyrics/LyricLine.cs
+++ b/MediaBrowser.Controller/Lyrics/LyricLine.cs
@@ -12,17 +12,17 @@ public class LyricLine
/// <param name="start">The lyric start time in ticks.</param>
public LyricLine(string text, long? start = null)
{
- Start = start;
Text = text;
+ Start = start;
}
/// <summary>
- /// Gets the start time in ticks.
+ /// Gets the text of this lyric line.
/// </summary>
- public long? Start { get; }
+ public string Text { get; }
/// <summary>
- /// Gets the text.
+ /// Gets the start time in ticks.
/// </summary>
- public string Text { get; }
+ public long? Start { get; }
}