Spotify.NET/SpotifyAPI.Web/Models/Response/ResumePointObject.cs
2020-05-01 20:05:28 +02:00

9 lines
152 B
C#

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