1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-11 21:42:37 +01:00
Radarr/NzbDrone.Core/Repository/ExternalNotificationSetting.cs

18 lines
380 B
C#
Raw Normal View History

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