Radarr/src/NzbDrone.Api/Notifications/NotificationResource.cs

15 lines
427 B
C#
Raw Normal View History

2013-05-20 01:32:05 +00:00
using System;
using System.Collections.Generic;
2013-05-20 01:32:05 +00:00
namespace NzbDrone.Api.Notifications
{
public class NotificationResource : ProviderResource
2013-05-20 01:32:05 +00:00
{
2015-04-25 16:02:17 +00:00
public string Link { get; set; }
public bool OnGrab { get; set; }
public bool OnDownload { get; set; }
public bool OnUpgrade { get; set; }
public string TestCommand { get; set; }
public HashSet<int> Tags { get; set; }
2013-05-20 01:32:05 +00:00
}
}