namespace MediaBrowser.Model.Lyrics;
///
/// LyricLineCue model, holds information about the timing of words within a LyricLine.
///
public class LyricLineCue
{
///
/// Initializes a new instance of the class.
///
/// The start of the character index of the lyric.
/// The start of the timestamp the lyric is synced to in ticks.
/// The end of the timestamp the lyric is synced to in ticks.
public LyricLineCue(int position, long start, long? end)
{
Position = position;
Start = start;
End = end;
}
///
/// Gets the character index of the lyric.
///
public int Position { get; }
///
/// Gets the timestamp the lyric is synced to in ticks.
///
public long Start { get; }
///
/// Gets the end timestamp the lyric is synced to in ticks.
///
public long? End { get; }
}