mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 01:02:55 +08:00
Add request class
This commit is contained in:
parent
8642ed7631
commit
1721b8e47a
28
osu.Game/Online/API/Requests/CommentDeleteRequest.cs
Normal file
28
osu.Game/Online/API/Requests/CommentDeleteRequest.cs
Normal file
@ -0,0 +1,28 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using System.Net.Http;
|
||||
using osu.Framework.IO.Network;
|
||||
using osu.Game.Online.API.Requests.Responses;
|
||||
|
||||
namespace osu.Game.Online.API.Requests
|
||||
{
|
||||
public class CommentDeleteRequest : APIRequest<CommentBundle>
|
||||
{
|
||||
private readonly long id;
|
||||
|
||||
public CommentDeleteRequest(long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
protected override WebRequest CreateWebRequest()
|
||||
{
|
||||
var req = base.CreateWebRequest();
|
||||
req.Method = HttpMethod.Delete;
|
||||
return req;
|
||||
}
|
||||
|
||||
protected override string Target => $@"comments/{id}";
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user