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

10 lines
184 B
C#

namespace SpotifyAPI.Web
{
public class TimeInterval
{
public float Start { get; set; }
public float Duration { get; set; }
public float Confidence { get; set; }
}
}