using MediaBrowser.Model.Lyrics; namespace MediaBrowser.Model.Providers; /// /// The remote lyric info. /// public class RemoteLyricInfo { /// /// 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 lyric metadata. /// public required LyricMetadata Metadata { get; init; } /// /// Gets the lyrics. /// public required LyricResponse Lyrics { get; init; } }