mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
14 lines
388 B
C#
14 lines
388 B
C#
using NzbDrone.Core.Notifications.Xbmc.Model;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications.Xbmc
|
|
{
|
|
public interface IApiProvider
|
|
{
|
|
void Notify(XbmcSettings settings, string title, string message);
|
|
void Update(XbmcSettings settings, Series series);
|
|
void Clean(XbmcSettings settings);
|
|
bool CanHandle(XbmcVersion version);
|
|
}
|
|
}
|