jellyfin/MediaBrowser.Controller/Lyrics/Lyric.cs

19 lines
414 B
C#

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