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