mirror of
https://github.com/Readarr/Readarr
synced 2026-01-05 07:03:13 +01:00
12 lines
No EOL
307 B
C#
12 lines
No EOL
307 B
C#
using System;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public class NotificationDefinition : ProviderDefinition
|
|
{
|
|
public Boolean OnGrab { get; set; }
|
|
public Boolean OnDownload { get; set; }
|
|
public Boolean OnUpgrade { get; set; }
|
|
}
|
|
} |