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

31 lines
598 B
C#
Raw Normal View History

2020-05-04 22:02:53 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class FollowCheckCurrentUserRequest : RequestParams
{
public FollowCheckCurrentUserRequest(Type type, IList<string> ids)
{
Ensure.ArgumentNotNull(type, nameof(type));
Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids));
TypeParam = type;
Ids = ids;
}
2020-05-04 22:02:53 +01:00
[QueryParam("type")]
public Type TypeParam { get; }
2020-05-04 22:02:53 +01:00
[QueryParam("ids")]
public IList<string> Ids { get; }
2020-05-04 22:02:53 +01:00
public enum Type
2020-05-04 22:02:53 +01:00
{
[String("artist")]
Artist,
[String("user")]
User
}
}
}