You've already forked Sonarr
							
							
				mirror of
				https://github.com/Sonarr/Sonarr.git
				synced 2025-10-31 00:07:55 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			589 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			589 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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);
 | |
|     }
 | |
| }
 |