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