jellyfin/MediaBrowser.Controller/Lyrics/LyricResponse.cs

20 lines
457 B
C#
Raw Normal View History

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