You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
589 B
18 lines
589 B
using System.Collections.Generic;
|
|
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);
|
|
}
|
|
}
|