You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
455 B
20 lines
455 B
2 years ago
|
using System.Collections.Generic;
|
||
|
|
||
8 months ago
|
namespace MediaBrowser.Model.Lyrics;
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// LyricResponse model.
|
||
|
/// </summary>
|
||
8 months ago
|
public class LyricDto
|
||
2 years ago
|
{
|
||
2 years ago
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets Metadata for the lyrics.
|
||
2 years ago
|
/// </summary>
|
||
2 years ago
|
public LyricMetadata Metadata { get; set; } = new();
|
||
2 years ago
|
|
||
2 years ago
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets a collection of individual lyric lines.
|
||
2 years ago
|
/// </summary>
|
||
8 months ago
|
public IReadOnlyList<LyricLine> Lyrics { get; set; } = [];
|
||
2 years ago
|
}
|