mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
17639a9b54
* Add Audio Track Analysis models and API endpoint * Update docs * Add link to EchoNest archived docs for AudioAnalysis model
30 lines
781 B
C#
30 lines
781 B
C#
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
{
|
|
public class AudioAnalysis : BasicModel
|
|
{
|
|
[JsonProperty("bars")]
|
|
public List<AnalysisTimeSlice> Bars { get; set; }
|
|
|
|
[JsonProperty("beats")]
|
|
public List<AnalysisTimeSlice> Beats { get; set; }
|
|
|
|
[JsonProperty("meta")]
|
|
public AnalysisMeta Meta { get; set; }
|
|
|
|
[JsonProperty("sections")]
|
|
public List<AnalysisSection> Sections { get; set; }
|
|
|
|
[JsonProperty("segments")]
|
|
public List<AnalysisSegment> Segments { get; set; }
|
|
|
|
[JsonProperty("tatums")]
|
|
public List<AnalysisTimeSlice> Tatums { get; set; }
|
|
|
|
[JsonProperty("track")]
|
|
public AnalysisTrack Track { get; set; }
|
|
}
|
|
}
|