NotificationModule added to API

This commit is contained in:
Mark McDowall
2013-05-19 18:32:05 -07:00
parent e9bf78a97d
commit 8a6a64d104
3 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using NzbDrone.Api.ClientSchema;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.Notifications
{
public class NotificationResource : RestResource
{
public Boolean Enable { get; set; }
public String Name { get; set; }
public List<Field> Fields { get; set; }
}
}