namespace MediaBrowser.Model.Lyrics; /// /// Lyric model. /// public class LyricLine { /// /// Initializes a new instance of the class. /// /// The lyric text. /// The lyric start time in ticks. public LyricLine(string text, long? start = null) { Text = text; Start = start; } /// /// Gets the text of this lyric line. /// public string Text { get; } /// /// Gets the start time in ticks. /// public long? Start { get; } }