Spotify.NET/SpotifyAPI.Web/Models/Response/TrackAudioAnalysis.cs

14 lines
352 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class TrackAudioAnalysis
{
public List<TimeInterval> Bars { get; set; }
public List<TimeInterval> Beats { get; set; }
public List<Section> Sections { get; set; }
public List<Segment> Segments { get; set; }
public List<TimeInterval> Tatums { get; set; }
}
}