mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			586 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			586 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| using MediaBrowser.Controller.Entities;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Providers
 | |
| {
 | |
|     public interface IHasItemChangeMonitor
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Determines whether the specified item has changed.
 | |
|         /// </summary>
 | |
|         /// <param name="item">The item.</param>
 | |
|         /// <param name="directoryService">The directory service.</param>
 | |
|         /// <returns><c>true</c> if the specified item has changed; otherwise, <c>false</c>.</returns>
 | |
|         bool HasChanged(BaseItem item, IDirectoryService directoryService);
 | |
|     }
 | |
| }
 |