2020-05-07 12:48:31 +01:00
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class Section
|
|
|
|
{
|
2020-05-08 09:25:33 +01:00
|
|
|
public float Start { get; set; }
|
|
|
|
public float Duration { get; set; }
|
|
|
|
public float Confidence { get; set; }
|
|
|
|
public float Loudness { get; set; }
|
|
|
|
public float Tempo { get; set; }
|
|
|
|
public float TempoConfidence { get; set; }
|
|
|
|
public int Key { get; set; }
|
|
|
|
public float KeyConfidence { get; set; }
|
|
|
|
public int Mode { get; set; }
|
|
|
|
public float ModeConfidence { get; set; }
|
|
|
|
public int TimeSignature { get; set; }
|
|
|
|
public float TimeSignatureConfidence { get; set; }
|
2020-05-07 12:48:31 +01:00
|
|
|
}
|
|
|
|
}
|
2020-05-25 17:00:38 +01:00
|
|
|
|