//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.Lyrics;
using global::System.Collections.Generic;
///
/// LyricResponse model.
///
public class LyricDto
{
///
/// 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; } = [];
}