1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-05 23:57:20 +02:00
Radarr/NzbDrone.Api/Notifications/NotificationResource.cs

18 lines
550 B
C#
Raw Normal View History

2013-05-20 03:32:05 +02:00
using System;
using System.Collections.Generic;
using NzbDrone.Api.ClientSchema;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.Notifications
{
public class NotificationResource : RestResource
{
public String Name { get; set; }
public String ImplementationName { get; set; }
2013-05-20 06:19:54 +02:00
public Boolean OnGrab { get; set; }
public Boolean OnDownload { get; set; }
2013-05-20 03:32:05 +02:00
public List<Field> Fields { get; set; }
public String Implementation { get; set; }
2013-06-13 17:21:38 +02:00
public String TestCommand { get; set; }
2013-05-20 03:32:05 +02:00
}
}