jellyfin/MediaBrowser.Controller/Lyrics/Lyric.cs
2022-09-17 10:42:48 -04:00

19 lines
412 B
C#

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