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.
21 lines
501 B
21 lines
501 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Lyrics;
|
|
|
|
/// <summary>
|
|
/// LyricResponse model.
|
|
/// </summary>
|
|
public class LyricResponse
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets Metadata for the lyrics.
|
|
/// </summary>
|
|
public LyricMetadata Metadata { get; set; } = new();
|
|
|
|
/// <summary>
|
|
/// Gets or sets a collection of individual lyric lines.
|
|
/// </summary>
|
|
public IReadOnlyList<LyricLine> Lyrics { get; set; } = Array.Empty<LyricLine>();
|
|
}
|