mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
14 lines
392 B
C#
14 lines
392 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class TrackAudioAnalysis
|
||
|
{
|
||
|
public List<TimeInterval> Bars { get; private set; }
|
||
|
public List<TimeInterval> Beats { get; private set; }
|
||
|
public List<Section> Sections { get; private set; }
|
||
|
public List<Segment> Segments { get; private set; }
|
||
|
public List<TimeInterval> Tatums { get; private set; }
|
||
|
}
|
||
|
}
|