mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
ExternalNotificationProvider moved to Peta.
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user