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

11 lines
185 B
C#
Raw Normal View History

2020-05-07 12:48:31 +01:00
namespace SpotifyAPI.Web
{
public class TimeInterval
{
public float Start { get; set; }
public float Duration { get; set; }
public float Confidence { get; set; }
2020-05-07 12:48:31 +01:00
}
}
2020-05-25 17:00:38 +01:00