whitespace stylecop fixes for Wox.Infra (#5689)

* Limited to whitespace

* removing stylecop again
This commit is contained in:
Clint Rutkas
2020-08-06 11:28:13 -07:00
committed by GitHub
parent 7b767df0b5
commit d6e46d73b5
24 changed files with 81 additions and 28 deletions

View File

@@ -11,15 +11,22 @@ namespace Wox.Infrastructure.Storage
{
// Events to watch out for
event FileSystemEventHandler Created;
event FileSystemEventHandler Deleted;
event FileSystemEventHandler Changed;
event RenamedEventHandler Renamed;
// Properties of File System watcher
Collection<string> Filters { get; set; }
bool EnableRaisingEvents { get; set; }
NotifyFilters NotifyFilter { get; set; }
string Path { get; set; }
bool IncludeSubdirectories { get; set; }
}
}