2011-06-18 01:46:22 +00:00
|
|
|
|
using PetaPoco;
|
2011-04-29 06:06:13 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
|
|
|
{
|
2011-06-17 19:18:50 +00:00
|
|
|
|
[TableName("ExternalNotificationSettings")]
|
|
|
|
|
[PrimaryKey("Id", autoIncrement = true)]
|
2011-04-29 06:06:13 +00:00
|
|
|
|
public class ExternalNotificationSetting
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool Enabled { get; set; }
|
2011-06-17 19:18:50 +00:00
|
|
|
|
|
2011-04-29 06:06:13 +00:00
|
|
|
|
public string NotifierName { get; set; }
|
2011-06-17 19:18:50 +00:00
|
|
|
|
|
2011-04-29 06:06:13 +00:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|
2011-06-18 04:39:02 +00:00
|
|
|
|
}
|