Spotify.NET/SpotifyAPI.Web/Models/Response/Segment.cs

19 lines
506 B
C#
Raw Normal View History

2020-05-07 12:48:31 +01:00
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; }
2020-05-25 17:00:38 +01:00
public List<float> Pitches { get; set; } = default!;
public List<float> Timbre { get; set; } = default!;
2020-05-07 12:48:31 +01:00
}
}
2020-05-25 17:00:38 +01:00