using System.Collections.Generic;
namespace MediaBrowser.Controller.Lyrics;
///
/// LyricResponse model.
///
public class LyricResponse
{
///
/// Gets or sets Metadata.
///
public IDictionary? Metadata { get; set; }
///
/// Gets or sets Lyrics.
///
public IEnumerable? Lyrics { get; set; }
}