1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-18 21:29:46 +00:00

Reorder HttpMethods to match RestSharp

This commit is contained in:
Mark McDowall 2017-06-28 14:09:59 -07:00
parent 905ab18336
commit 601b54c244
No known key found for this signature in database
GPG key ID: D4CEFA9A718052E0

View file

@ -1,13 +1,14 @@
namespace NzbDrone.Common.Http
namespace NzbDrone.Common.Http
{
public enum HttpMethod
{
GET,
PUT,
POST,
HEAD,
PUT,
DELETE,
HEAD,
OPTIONS,
PATCH,
OPTIONS
MERGE
}
}