mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
12 lines
223 B
C#
12 lines
223 B
C#
namespace SpotifyAPI.Web
|
|
{
|
|
public class PlaylistCurrentUsersRequest : RequestParams
|
|
{
|
|
[QueryParam("limit")]
|
|
public int? Limit { get; set; }
|
|
|
|
[QueryParam("offset")]
|
|
public int? Offset { get; set; }
|
|
}
|
|
}
|