mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
14 lines
383 B
C#
14 lines
383 B
C#
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; }
|
|
}
|
|
} |