namespace MediaBrowser.Controller.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)
{
Start = start;
Text = text;
}
///
/// Gets the start time in ticks.
///
public long? Start { get; }
///
/// Gets the text.
///
public string Text { get; }
}