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
2011-06-17 12:18:50 -07:00

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; }
}
}