mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
29 lines
715 B
C#
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; }
|
|
}
|
|
} |