Spotify.NET/SpotifyAPI.Web/Models/AudioAnalysis.cs
2020-03-09 20:47:39 +01:00

29 lines
715 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
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; }
}
}