mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
17639a9b54
* Add Audio Track Analysis models and API endpoint * Update docs * Add link to EchoNest archived docs for AudioAnalysis model
17 lines
350 B
C#
17 lines
350 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
{
|
|
public class AnalysisTimeSlice
|
|
{
|
|
[JsonProperty("start")]
|
|
public double Start { get; set; }
|
|
|
|
[JsonProperty("duration")]
|
|
public double Duration { get; set; }
|
|
|
|
[JsonProperty("confidence")]
|
|
public double Confidence { get; set; }
|
|
}
|
|
}
|