Added ExternalNotificationProviderBase based on IndexProviderBase.

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

View file

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
{
public class ExternalNotificationSetting
{
[SubSonicPrimaryKey(true)]
public int Id { get; set; }
public bool Enabled { get; set; }
public string NotifierName { get; set; }
public string Name { get; set; }
}
}