2020-05-07 12:48:31 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class TrackAudioAnalysis
|
|
|
|
{
|
2020-05-25 17:00:38 +01:00
|
|
|
public List<TimeInterval> Bars { get; set; } = default!;
|
|
|
|
public List<TimeInterval> Beats { get; set; } = default!;
|
|
|
|
public List<Section> Sections { get; set; } = default!;
|
|
|
|
public List<Segment> Segments { get; set; } = default!;
|
|
|
|
public List<TimeInterval> Tatums { get; set; } = default!;
|
2021-08-11 18:03:48 +01:00
|
|
|
public TrackAudio Track { get; set; } = default!;
|
|
|
|
public TrackMeta Meta { get; set; } = default!;
|
2020-05-07 12:48:31 +01:00
|
|
|
}
|
|
|
|
}
|
2020-05-25 17:00:38 +01:00
|
|
|
|