namespace MediaBrowser.Controller.Lyrics
{
///
/// Lyric model.
///
public class Lyric
{
///
/// Gets or sets the start time in ticks.
///
public long? Start { get; set; }
///
/// Gets or sets the text.
///
public string Text { get; set; } = string.Empty;
}
}