mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
26 lines
460 B
C#
26 lines
460 B
C#
namespace SpotifyAPI.Web
|
|
{
|
|
public class FollowOfCurrentUserRequest : RequestParams
|
|
{
|
|
public FollowOfCurrentUserRequest(Type type = Type.Artist)
|
|
{
|
|
TypeParam = type;
|
|
}
|
|
|
|
[QueryParam("type")]
|
|
public Type TypeParam { get; set; }
|
|
|
|
[QueryParam("limit")]
|
|
public int? Limit { get; set; }
|
|
|
|
[QueryParam("after")]
|
|
public string After { get; set; }
|
|
|
|
public enum Type
|
|
{
|
|
[String("artist")]
|
|
Artist
|
|
}
|
|
}
|
|
}
|