using System.Collections.Generic; 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. /// The time-aligned cues for the song's lyrics. public LyricLine(string text, long? start = null, IReadOnlyList? cues = null) { Text = text; Start = start; Cues = cues; } /// /// Gets the text of this lyric line. /// public string Text { get; } /// /// Gets the start time in ticks. /// public long? Start { get; } /// /// Gets the time-aligned cues for the song's lyrics. /// public IReadOnlyList? Cues { get; } }