#nullable disable #pragma warning disable CS1591 using System.Collections.Generic; namespace MediaBrowser.Controller.Lyrics { public class LyricResponse { public IDictionary MetaData { get; set; } public IEnumerable Lyrics { get; set; } } }