mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
15 lines
413 B
C#
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!;
|
|
}
|
|
}
|
|
|