1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 02:55:38 +00:00
Lidarr/NzbDrone.Api/Notifications/NotificationResource.cs

16 lines
447 B
C#
Raw Normal View History

2013-05-20 01:32:05 +00: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; }
2013-05-20 04:19:54 +00:00
public Boolean OnGrab { get; set; }
public Boolean OnDownload { get; set; }
2013-05-20 01:32:05 +00:00
public List<Field> Fields { get; set; }
public String Implementation { get; set; }
2013-05-20 01:32:05 +00:00
}
}