11 lines
250 B
C#
11 lines
250 B
C#
namespace NaiveHttpServer
|
|
{
|
|
public static class HttpMethods
|
|
{
|
|
public const string Get = "GET";
|
|
public const string Post = "POST";
|
|
public const string Put = "PUT";
|
|
public const string Delete = "DELETE";
|
|
}
|
|
}
|