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

11 lines
265 B
C#
Raw Normal View History

using System.Collections.Generic;
using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class SeveralAudioFeatures : BasicModel
{
[JsonProperty("audio_features")]
public List<AudioFeatures> AudioFeatures { get; set; }
}
}