mirror of https://github.com/Sonarr/Sonarr
22 lines
466 B
C#
22 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
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; }
|
|
}
|
|
}
|