mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			790 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			790 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| using System.Collections.Generic;
 | |
| using MediaBrowser.Model.Sync;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Sync
 | |
| {
 | |
|     public interface ISyncProvider
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the name.
 | |
|         /// </summary>
 | |
|         /// <value>The name.</value>
 | |
|         string Name { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the synchronize targets.
 | |
|         /// </summary>
 | |
|         /// <param name="userId">The user identifier.</param>
 | |
|         /// <returns>IEnumerable<SyncTarget>.</returns>
 | |
|         List<SyncTarget> GetSyncTargets(string userId);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets all synchronize targets.
 | |
|         /// </summary>
 | |
|         /// <returns>IEnumerable<SyncTarget>.</returns>
 | |
|         List<SyncTarget> GetAllSyncTargets();
 | |
|     }
 | |
| }
 |