Lidarr/src/NzbDrone.Core/Notifications/Webhook/WebhookMethod.cs

11 lines
182 B
C#

using NzbDrone.Common.Http;
namespace NzbDrone.Core.Notifications.Webhook
{
public enum WebhookMethod
{
POST = HttpMethod.POST,
PUT = HttpMethod.PUT
}
}