mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
17 lines
519 B
C#
17 lines
519 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!;
|
|
public TrackAudio Track { get; set; } = default!;
|
|
public TrackMeta Meta { get; set; } = default!;
|
|
}
|
|
}
|
|
|