2013-07-19 03:47:55 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-06-12 06:45:25 +00:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|