1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-23 01:41:42 +02:00
Radarr/NzbDrone.Core/Repository/ExternalNotificationSetting.cs
kay.one 520e9c9d14 Fixed Series.QualityProfile relationship
more subsonic cleanup
2011-06-17 21:39:02 -07:00

17 lines
379 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; }
}
}