Spotify.NET/SpotifyAPI.Web/Models/Response/TimeInterval.cs
2020-05-07 13:48:31 +02:00

10 lines
208 B
C#

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