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

10 lines
153 B
C#

namespace SpotifyAPI.Web
{
public class ResumePoint
{
public bool FullyPlayed { get; set; }
public int ResumePositionMs { get; set; }
}
}