mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
ExternalNotificationProvider moved to Peta.
This commit is contained in:
parent
f7ee16dbba
commit
901db9d58b
3 changed files with 23 additions and 10 deletions
|
@ -2,17 +2,20 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SubSonic.SqlGeneration.Schema;
|
||||
using PetaPoco;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
[TableName("ExternalNotificationSettings")]
|
||||
[PrimaryKey("Id", autoIncrement = true)]
|
||||
public class ExternalNotificationSetting
|
||||
{
|
||||
[SubSonicPrimaryKey(true)]
|
||||
public int Id { get; set; }
|
||||
|
||||
public bool Enabled { get; set; }
|
||||
|
||||
public string NotifierName { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue