mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
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; }
|
|||
|
}
|
|||
|
}
|