You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
838 B
27 lines
838 B
using NzbDrone.Common.Serializer;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public abstract class NotificationBase<TSetting> : INotification where TSetting : class, INotifcationSettings, new()
|
|
{
|
|
public abstract string Name { get; }
|
|
public abstract string ImplementationName { get; }
|
|
|
|
public NotificationDefinition InstanceDefinition { get; set; }
|
|
|
|
public abstract void OnGrab(string message);
|
|
public abstract void OnDownload(string message, Series series);
|
|
public abstract void AfterRename(Series series);
|
|
|
|
public TSetting Settings { get; private set; }
|
|
|
|
public TSetting ImportSettingsFromJson(string json)
|
|
{
|
|
Settings = Json.Deserialize<TSetting>(json) ?? new TSetting();
|
|
|
|
return Settings;
|
|
}
|
|
}
|
|
}
|