2013-05-19 23:17:32 +00:00
|
|
|
|
using System;
|
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-09-21 06:39:26 +00:00
|
|
|
|
using NzbDrone.Core.ThingiProvider;
|
2013-05-19 23:17:32 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
|
|
|
{
|
|
|
|
|
public class NotificationDefinition : ModelBase
|
|
|
|
|
{
|
|
|
|
|
public String Name { get; set; }
|
|
|
|
|
public Boolean OnGrab { get; set; }
|
|
|
|
|
public Boolean OnDownload { get; set; }
|
|
|
|
|
public String Settings { get; set; }
|
|
|
|
|
public String Implementation { get; set; }
|
|
|
|
|
}
|
2013-09-21 06:39:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class NotificationProviderModel : Provider
|
|
|
|
|
{
|
|
|
|
|
public Boolean OnGrab { get; set; }
|
|
|
|
|
public Boolean OnDownload { get; set; }
|
|
|
|
|
}
|
2013-05-19 23:17:32 +00:00
|
|
|
|
}
|