mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-29 18:14:28 -04:00
13 lines
174 B
C#
13 lines
174 B
C#
namespace NzbDrone.Common.Http
|
|
{
|
|
public enum HttpMethod
|
|
{
|
|
GET,
|
|
PUT,
|
|
POST,
|
|
HEAD,
|
|
DELETE,
|
|
PATCH,
|
|
OPTIONS
|
|
}
|
|
} |