IResolverIgnoreRule.cs 408 B

123456789101112131415
  1. 
  2. using MediaBrowser.Controller.Entities;
  3. using MediaBrowser.Controller.IO;
  4. using MediaBrowser.Model.IO;
  5. namespace MediaBrowser.Controller.Resolvers
  6. {
  7. /// <summary>
  8. /// Provides a base "rule" that anyone can use to have paths ignored by the resolver
  9. /// </summary>
  10. public interface IResolverIgnoreRule
  11. {
  12. bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent);
  13. }
  14. }