Spotify.NET/SpotifyAPI.Web/Models/Response/TrackAudioAnalysis.cs
2020-05-25 18:00:47 +02:00

15 lines
413 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class TrackAudioAnalysis
{
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!;
}
}