jellyfin/MediaBrowser.Controller/Lyrics/Lyric.cs

19 lines
412 B
C#
Raw Normal View History

namespace MediaBrowser.Controller.Lyrics
2022-09-10 14:58:03 -04:00
{
/// <summary>
/// Lyric model.
2022-09-10 14:58:03 -04:00
/// </summary>
public class Lyric
{
/// <summary>
/// Gets or sets the start time in ticks.
2022-09-10 14:58:03 -04:00
/// </summary>
2022-09-17 10:42:48 -04:00
public long? Start { get; set; }
2022-09-10 14:58:03 -04:00
/// <summary>
/// Gets or sets the text.
/// </summary>
public string Text { get; set; } = string.Empty;
}
}