2020-03-09 19:47:39 +00:00
|
|
|
using Newtonsoft.Json;
|
2017-07-02 18:37:11 +01:00
|
|
|
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
|
|
{
|
2020-03-09 19:47:39 +00:00
|
|
|
public class AnalysisSection
|
|
|
|
{
|
|
|
|
[JsonProperty("start")]
|
|
|
|
public double Start { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("duration")]
|
|
|
|
public double Duration { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("confidence")]
|
|
|
|
public double Confidence { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("loudness")]
|
|
|
|
public double Loudness { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("tempo")]
|
|
|
|
public double Tempo { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("tempo_confidence")]
|
|
|
|
public double TempoConfidence { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("key")]
|
|
|
|
public int Key { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("key_confidence")]
|
|
|
|
public double KeyConfidence { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("mode")]
|
|
|
|
public int Mode { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("mode_confidence")]
|
|
|
|
public double ModeConfidence { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("time_signature")]
|
|
|
|
public int TimeSignature { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("time_signature_confidence")]
|
|
|
|
public double TimeSignatureConfidence { get; set; }
|
|
|
|
}
|
|
|
|
}
|