mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
19 lines
506 B
C#
19 lines
506 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class Segment
|
|
{
|
|
public float Start { get; set; }
|
|
public float Duration { get; set; }
|
|
public float Confidence { get; set; }
|
|
public float LoudnessStart { get; set; }
|
|
public float LoudnessMax { get; set; }
|
|
public float LoudnessMaxTime { get; set; }
|
|
public float LoudnessEnd { get; set; }
|
|
public List<float> Pitches { get; set; } = default!;
|
|
public List<float> Timbre { get; set; } = default!;
|
|
}
|
|
}
|
|
|