2022-09-15 23:45:26 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|