mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Moved source code under src folder - massive change
This commit is contained in:
22
src/NzbDrone.Core/Notifications/NotificationDefinition.cs
Normal file
22
src/NzbDrone.Core/Notifications/NotificationDefinition.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using NzbDrone.Core.Datastore;
|
||||
using NzbDrone.Core.ThingiProvider;
|
||||
|
||||
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; }
|
||||
}
|
||||
|
||||
|
||||
public class NotificationProviderModel : ProviderDefinition
|
||||
{
|
||||
public Boolean OnGrab { get; set; }
|
||||
public Boolean OnDownload { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user