17 lines
285 B
C#
17 lines
285 B
C#
using xExceptions.Attributes;
|
|
|
|
namespace xHttpService.Constants {
|
|
public enum XHttpMethod {
|
|
[StringValue ("GET")]
|
|
GET,
|
|
|
|
[StringValue ("POST")]
|
|
POST,
|
|
|
|
[StringValue ("PUT")]
|
|
PUT,
|
|
|
|
[StringValue ("DELETE")]
|
|
DELETE
|
|
}
|
|
} |