mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 12:33:00 +02:00
Notifications wired up server sided
This commit is contained in:
14
NzbDrone.Core/Notifications/NotificationDefinition.cs
Normal file
14
NzbDrone.Core/Notifications/NotificationDefinition.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using NzbDrone.Core.Datastore;
|
||||
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user