18 lines
505 B
C#
18 lines
505 B
C#
using System.Collections.Generic;
|
|
using RestSharp;
|
|
using Untappd.Net.Request;
|
|
|
|
namespace Untappd.Net.Responses.Actions
|
|
{
|
|
public class RemoveFromWishList : IAction
|
|
{
|
|
public Method RequestMethod { get { return Method.GET; } }
|
|
public string EndPoint { get { return "v4/user/wishlist/delete"; } }
|
|
public IDictionary<string, object> BodyParameters { get; private set; }
|
|
|
|
public RemoveFromWishList(int beerId)
|
|
{
|
|
BodyParameters = new Dictionary<string, object>() { { "bid", beerId } };
|
|
}
|
|
}
|
|
} |