mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-04 14:08:27 +08:00
12 lines
170 B
C#
12 lines
170 B
C#
namespace Mhf.Server.Web
|
|
{
|
|
public enum WebRequestMethod
|
|
{
|
|
Unknown = -1,
|
|
Get = 0,
|
|
Post = 1,
|
|
Put = 2,
|
|
Delete = 3
|
|
}
|
|
}
|