mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 07:26:28 +00:00
25 lines
788 B
C#
25 lines
788 B
C#
namespace SpotifyAPI.Web
|
|
{
|
|
public class TrackAudioFeatures
|
|
{
|
|
public float Acousticness { get; set; }
|
|
public string AnalysisUrl { get; set; }
|
|
public float Danceability { get; set; }
|
|
public int DurationMs { get; set; }
|
|
public float Energy { get; set; }
|
|
public string Id { get; set; }
|
|
public float Instrumentalness { get; set; }
|
|
public int Key { get; set; }
|
|
public float Liveness { get; set; }
|
|
public float Loudness { get; set; }
|
|
public int Mode { get; set; }
|
|
public float Speechiness { get; set; }
|
|
public float Tempo { get; set; }
|
|
public int TimeSignature { get; set; }
|
|
public string TrackHref { get; set; }
|
|
public string Type { get; set; }
|
|
public string Uri { get; set; }
|
|
public float Valence { get; set; }
|
|
}
|
|
}
|