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