using System.Collections.Generic; namespace MediaBrowser.Model.Lyrics; /// /// 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; } = []; }