Added ExternalNotificationProviderBase based on IndexProviderBase.

This commit is contained in:
Mark McDowall 2011-04-28 23:06:13 -07:00
commit a36d5fae2f
16 changed files with 336 additions and 97 deletions

View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Model
{
public enum ExternalNotificationType
{
Grab = 0,
Download = 1,
Rename = 2
}
}