Spotify.NET/SpotifyAPI.Web/Models/Request/FollowGetCurrentUserRequest.cs

27 lines
438 B
C#
Raw Normal View History

2020-05-04 22:02:53 +01:00
namespace SpotifyAPI.Web
{
public class FollowOfCurrentUserRequest : RequestParams
{
public FollowOfCurrentUserRequest()
{
Type = Types.Artist;
}
[QueryParam("type")]
public Types Type { get; set; }
[QueryParam("limit")]
public int? Limit { get; set; }
[QueryParam("after")]
public string After { get; set; }
public enum Types
{
[String("artist")]
Artist
}
}
}