2022-09-15 23:45:26 +00:00
|
|
|
#nullable disable
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Lyrics
|
|
|
|
{
|
2022-09-17 00:52:40 +00:00
|
|
|
/// <summary>
|
|
|
|
/// LyricResponse model.
|
|
|
|
/// </summary>
|
2022-09-15 23:45:26 +00:00
|
|
|
public class LyricResponse
|
|
|
|
{
|
2022-09-17 00:52:40 +00:00
|
|
|
/// <summary>
|
2022-09-17 14:42:48 +00:00
|
|
|
/// Gets or sets Metadata.
|
2022-09-17 00:52:40 +00:00
|
|
|
/// </summary>
|
2022-09-17 14:42:48 +00:00
|
|
|
public IDictionary<string, string> Metadata { get; set; }
|
2022-09-15 23:45:26 +00:00
|
|
|
|
2022-09-17 00:52:40 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets Lyrics.
|
|
|
|
/// </summary>
|
2022-09-15 23:45:26 +00:00
|
|
|
public IEnumerable<Lyric> Lyrics { get; set; }
|
|
|
|
}
|
|
|
|
}
|