2022-09-15 23:45:26 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2022-09-17 21:37:38 +00:00
|
|
|
namespace MediaBrowser.Controller.Lyrics;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// LyricResponse model.
|
|
|
|
/// </summary>
|
|
|
|
public class LyricResponse
|
2022-09-15 23:45:26 +00:00
|
|
|
{
|
2022-09-17 00:52:40 +00:00
|
|
|
/// <summary>
|
2022-09-17 21:37:38 +00:00
|
|
|
/// Gets or sets Metadata.
|
2022-09-17 00:52:40 +00:00
|
|
|
/// </summary>
|
2022-09-18 20:17:26 +00:00
|
|
|
public LyricMetadata Metadata { get; set; } = new LyricMetadata();
|
2022-09-15 23:45:26 +00:00
|
|
|
|
2022-09-17 21:37:38 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets Lyrics.
|
|
|
|
/// </summary>
|
2022-09-18 20:17:26 +00:00
|
|
|
public IReadOnlyCollection<LyricLine> Lyrics { get; set; } = new List<LyricLine>();
|
2022-09-15 23:45:26 +00:00
|
|
|
}
|