namespace MediaBrowser.Model.Lyrics;
///
/// The remote lyric info dto.
///
public class RemoteLyricInfoDto
{
///
/// Gets or sets the id for the lyric.
///
public required string Id { get; set; }
///
/// Gets the provider name.
///
public required string ProviderName { get; init; }
///
/// Gets the lyrics.
///
public required LyricDto Lyrics { get; init; }
}