Fix style issues

This commit is contained in:
Bond_009
2019-07-06 16:15:38 +02:00
parent 0e0c70f782
commit ab7ef9c9cb
3 changed files with 35 additions and 67 deletions

View File

@@ -8,6 +8,12 @@ namespace MediaBrowser.Controller.Resolvers
/// </summary>
public interface IResolverIgnoreRule
{
/// <summary>
/// Checks whether or not the file should be ignored.
/// </summary>
/// <param name="fileInfo">The file information.</param>
/// <param name="parent">The parent BaseItem.</param>
/// <returns>True if the file should be ignored.</returns>
bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent);
}
}