mirror of https://github.com/Sonarr/Sonarr
16 lines
357 B
C#
16 lines
357 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using NzbDrone.Core.Repository;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Providers
|
|||
|
{
|
|||
|
public interface IExtenalNotificationProvider
|
|||
|
{
|
|||
|
void OnGrab(string message);
|
|||
|
void OnDownload(EpisodeFile episodeFile);
|
|||
|
void OnRename(EpisodeFile episodeFile);
|
|||
|
}
|
|||
|
}
|