using System.Collections.Generic; namespace SpotifyAPI.Web { public class ArtistsTopTracksResponse { public List<FullTrack> Tracks { get; set; } = default!; } }