1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-27 18:17:13 +00:00

Reorder HttpMethods to match RestSharp

This commit is contained in:
Qstick 2017-10-28 17:13:34 -04:00
parent 9a2cb67980
commit 7e863d61ff

View file

@ -3,11 +3,12 @@ namespace NzbDrone.Common.Http
public enum HttpMethod
{
GET,
PUT,
POST,
HEAD,
PUT,
DELETE,
HEAD,
OPTIONS,
PATCH,
OPTIONS
MERGE
}
}
}