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

19 lines
559 B
C#
Raw Normal View History

2020-05-07 12:48:31 +01:00
namespace SpotifyAPI.Web
{
public class Section
{
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
}
}