mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
9 lines
150 B
C#
9 lines
150 B
C#
using System;
|
|
namespace SDKCSharp.Common
|
|
{
|
|
public enum RequestMethod
|
|
{
|
|
GET, HEAD, POST, PUT, PATCH, DELETE, OPTIONS, TRACE
|
|
}
|
|
}
|