mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-29 05:16:34 +02:00
Xbmc Refactored
This commit is contained in:
20
NzbDrone.Core/Notifications/Xbmc/IApiProvider.cs
Normal file
20
NzbDrone.Core/Notifications/Xbmc/IApiProvider.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user