using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Lyrics;
///
/// LyricResponse model.
///
public class LyricResponse
{
///
/// Gets or sets Metadata for the lyrics.
///
public LyricMetadata Metadata { get; set; } = new();
///
/// Gets or sets a collection of individual lyric lines.
///
public IReadOnlyList Lyrics { get; set; } = Array.Empty();
}