jellyfin/MediaBrowser.Controller/Lyrics/Lyric.cs

19 lines
411 B
C#
Raw Normal View History

namespace MediaBrowser.Controller.Lyrics
2022-09-10 18:58:03 +00:00
{
/// <summary>
/// Lyric dto.
/// </summary>
public class Lyric
{
/// <summary>
/// Gets or sets the start time (ticks).
/// </summary>
2022-09-11 19:56:34 +00:00
public double? Start { get; set; }
2022-09-10 18:58:03 +00:00
/// <summary>
/// Gets or sets the text.
/// </summary>
public string Text { get; set; } = string.Empty;
}
}