Files
Prowlarr-Prowlarr/NzbDrone.Core/ExternalNotification/ExternalNotificationDefinition.cs
2013-02-24 15:47:57 -08:00

14 lines
360 B
C#

using System.Linq;
using NzbDrone.Core.Datastore;
using PetaPoco;
namespace NzbDrone.Core.ExternalNotification
{
public class ExternalNotificationDefinition : ModelBase
{
public string Name { get; set; }
public bool OnGrab { get; set; }
public bool OnDownload { get; set; }
public bool OnRename { get; set; }
}
}