2022-09-15 23:45:26 +00:00
|
|
|
namespace MediaBrowser.Controller.Lyrics
|
2022-09-10 18:58:03 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2022-09-17 00:52:40 +00:00
|
|
|
/// Lyric model.
|
2022-09-10 18:58:03 +00:00
|
|
|
/// </summary>
|
|
|
|
public class Lyric
|
|
|
|
{
|
|
|
|
/// <summary>
|
2022-09-17 00:52:40 +00:00
|
|
|
/// Gets or sets the start time in ticks.
|
2022-09-10 18:58:03 +00:00
|
|
|
/// </summary>
|
2022-09-17 14:42:48 +00:00
|
|
|
public long? 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;
|
|
|
|
}
|
|
|
|
}
|