Spotify.NET/SpotifyAPI.Web/Models/Response/TimeInterval.cs
2020-05-25 18:00:47 +02:00

11 lines
185 B
C#

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