mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			360 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			360 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using CommonIO;
 | |
| using MediaBrowser.Controller.Entities;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Resolvers
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Provides a base "rule" that anyone can use to have paths ignored by the resolver
 | |
|     /// </summary>
 | |
|     public interface IResolverIgnoreRule
 | |
|     {
 | |
|         bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent);
 | |
|     }
 | |
| }
 |