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

13 lines
224 B
C#

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