mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Added ExternalNotificationProviderBase based on IndexProviderBase.
This commit is contained in:
parent
671dcd074c
commit
a36d5fae2f
16 changed files with 336 additions and 97 deletions
18
NzbDrone.Core/Repository/ExternalNotificationSetting.cs
Normal file
18
NzbDrone.Core/Repository/ExternalNotificationSetting.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SubSonic.SqlGeneration.Schema;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
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