1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-03 00:47:10 +02:00
Files
Sonarr/NzbDrone.Api/Notifications/NotificationResource.cs

18 lines
546 B
C#
Raw Normal View History

2013-05-19 18:32:05 -07: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-19 21:19:54 -07:00
public Boolean OnGrab { get; set; }
public Boolean OnDownload { get; set; }
2013-05-19 18:32:05 -07:00
public List<Field> Fields { get; set; }
public String Implementation { get; set; }
2013-06-12 19:55:11 -07:00
public String Command { get; set; }
2013-05-19 18:32:05 -07:00
}
}