Spotify.NET/SpotifyAPI.Web/Models/Response/TracksAudioFeaturesResponse.cs

10 lines
179 B
C#
Raw Normal View History

2020-05-07 12:48:31 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class TracksAudioFeaturesResponse
{
public List<TrackAudioFeatures> AudioFeatures { get; set; }
2020-05-07 12:48:31 +01:00
}
}