2022-09-15 23:45:26 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2024-02-26 12:09:40 +00:00
|
|
|
namespace MediaBrowser.Model.Lyrics;
|
2022-09-17 21:37:38 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// LyricResponse model.
|
|
|
|
/// </summary>
|
2024-02-26 12:09:40 +00:00
|
|
|
public class LyricDto
|
2022-09-15 23:45:26 +00:00
|
|
|
{
|
2022-09-17 00:52:40 +00:00
|
|
|
/// <summary>
|
2022-09-21 21:49:28 +00:00
|
|
|
/// Gets or sets Metadata for the lyrics.
|
2022-09-17 00:52:40 +00:00
|
|
|
/// </summary>
|
2022-09-19 01:17:53 +00:00
|
|
|
public LyricMetadata Metadata { get; set; } = new();
|
2022-09-15 23:45:26 +00:00
|
|
|
|
2022-09-17 21:37:38 +00:00
|
|
|
/// <summary>
|
2022-09-21 21:49:28 +00:00
|
|
|
/// Gets or sets a collection of individual lyric lines.
|
2022-09-17 21:37:38 +00:00
|
|
|
/// </summary>
|
2024-02-26 12:09:40 +00:00
|
|
|
public IReadOnlyList<LyricLine> Lyrics { get; set; } = [];
|
2022-09-15 23:45:26 +00:00
|
|
|
}
|