2011-03-06 20:45:35 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2011-03-06 21:36:09 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-03-06 20:45:35 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
|
|
|
|
public interface IExtenalNotificationProvider
|
|
|
|
|
{
|
|
|
|
|
void OnGrab(string message);
|
2011-03-06 21:36:09 +00:00
|
|
|
|
void OnDownload(EpisodeRenameModel erm);
|
|
|
|
|
void OnRename(EpisodeRenameModel erm);
|
2011-03-06 20:45:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|