Spotify.NET/SpotifyAPI.Web/Models/Request/PlaylistGetUsersRequest.cs
2020-05-03 09:06:28 +02:00

14 lines
221 B
C#

namespace SpotifyAPI.Web
{
public class PlaylistGetUsersRequest : RequestParams
{
[QueryParam("limit")]
public int? Limit { get; set; }
[QueryParam("offset")]
public int? Offset { get; set; }
}
}