Spotify.NET/SpotifyAPI.Web/Models/Recommendations.cs

14 lines
334 B
C#
Raw Normal View History

using System.Collections.Generic;
2016-04-01 12:23:11 +01:00
using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class Recommendations : BasicModel
{
[JsonProperty("seeds")]
public List<RecommendationSeed> Seeds { get; set; }
[JsonProperty("tracks")]
public List<SimpleTrack> Tracks { get; set; }
}
}