mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04:00
14 lines
192 B
C#
14 lines
192 B
C#
namespace NzbDrone.Common.Http
|
|
{
|
|
public enum HttpMethod
|
|
{
|
|
GET,
|
|
POST,
|
|
PUT,
|
|
DELETE,
|
|
HEAD,
|
|
OPTIONS,
|
|
PATCH,
|
|
MERGE
|
|
}
|
|
} |