mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-02 21:24:56 +00:00
15 lines
350 B
C#
15 lines
350 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Core.Model;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IExtenalNotificationProvider
|
|
{
|
|
void OnGrab(string message);
|
|
void OnDownload(EpisodeRenameModel erm);
|
|
void OnRename(EpisodeRenameModel erm);
|
|
}
|
|
}
|