using System.Collections.Generic; namespace SpotifyAPI.Web { public class ShowsResponse { public List<SimpleShow> Shows { get; set; } = default!; } }