mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
11 lines
182 B
C#
Executable File
11 lines
182 B
C#
Executable File
using NzbDrone.Common.Http;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public enum WebhookMethod
|
|
{
|
|
POST = HttpMethod.POST,
|
|
PUT = HttpMethod.PUT
|
|
}
|
|
}
|