namespace MediaBrowser.Controller.Lyrics;
///
/// Lyric model.
///
public class Lyric
{
///
/// Initializes a new instance of the class.
///
/// The lyric start time in ticks.
/// The lyric text.
public Lyric(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; }
}