begin new and last rework
This commit is contained in:
12
OwnChar.Server/Api/Endpoint/ApiRequestMethods.cs
Normal file
12
OwnChar.Server/Api/Endpoint/ApiRequestMethods.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Net;
|
||||
|
||||
namespace OwnChar.ServerNew.Api.Endpoint;
|
||||
|
||||
public static class ApiRequestMethods
|
||||
{
|
||||
public static string Get => WebRequestMethods.Http.Get;
|
||||
public static string Put => WebRequestMethods.Http.Put;
|
||||
public static string Post => WebRequestMethods.Http.Post;
|
||||
public static string Patch => "PATCH";
|
||||
public static string Delete => "DELETE";
|
||||
}
|
||||
Reference in New Issue
Block a user