ExternalNotificationProvider moved to Peta.

This commit is contained in:
Mark McDowall 2011-06-17 12:18:50 -07:00
commit 901db9d58b
3 changed files with 23 additions and 10 deletions

View file

@ -2,17 +2,20 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SubSonic.SqlGeneration.Schema;
using PetaPoco;
namespace NzbDrone.Core.Repository
{
[TableName("ExternalNotificationSettings")]
[PrimaryKey("Id", autoIncrement = true)]
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; }
}
}