Reorder HttpMethods to match RestSharp

This commit is contained in:
Qstick 2017-10-28 17:13:34 -04:00
parent 9a2cb67980
commit 7e863d61ff
1 changed files with 5 additions and 4 deletions

View File

@ -3,11 +3,12 @@ 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
} }
} }