Reorder HttpMethods to match RestSharp
This commit is contained in:
parent
905ab18336
commit
601b54c244
|
@ -1,13 +1,14 @@
|
||||||
namespace NzbDrone.Common.Http
|
namespace NzbDrone.Common.Http
|
||||||
{
|
{
|
||||||
public enum HttpMethod
|
public enum HttpMethod
|
||||||
{
|
{
|
||||||
GET,
|
GET,
|
||||||
PUT,
|
|
||||||
POST,
|
POST,
|
||||||
HEAD,
|
PUT,
|
||||||
DELETE,
|
DELETE,
|
||||||
|
HEAD,
|
||||||
|
OPTIONS,
|
||||||
PATCH,
|
PATCH,
|
||||||
OPTIONS
|
MERGE
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue