mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-07 15:07:41 +00:00
17 lines
380 B
C#
17 lines
380 B
C#
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; }
|
|
}
|
|
}
|