mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			627 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			627 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Threading;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using MediaBrowser.Model.Sync;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Sync
 | 
						|
{
 | 
						|
    public interface IHasDynamicAccess
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the synced file information.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="id">The identifier.</param>
 | 
						|
        /// <param name="target">The target.</param>
 | 
						|
        /// <param name="cancellationToken">The cancellation token.</param>
 | 
						|
        /// <returns>Task<SyncedFileInfo>.</returns>
 | 
						|
        Task<SyncedFileInfo> GetSyncedFileInfo(string id, SyncTarget target, CancellationToken cancellationToken);
 | 
						|
    }
 | 
						|
}
 |