mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
21 lines
641 B
C#
21 lines
641 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using NzbDrone.Core.Model.Xbmc;
|
||
|
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);
|
||
|
List<ActivePlayer> GetActivePlayers(XbmcSettings settings);
|
||
|
bool CheckForError(string response);
|
||
|
string GetSeriesPath(XbmcSettings settings, Series series);
|
||
|
bool CanHandle(XbmcVersion version);
|
||
|
}
|
||
|
}
|