internal class Options { public bool Whitespace { get; set; } = false; public IEnumerable Ignore { get; set; } = Array.Empty(); public string IgnoreChars { get; set; } = string.Empty; public string Path { get; set; } = "."; public string Pattern { get; set; } = "^.+$"; public bool Recurse { get; set; } = false; public bool Verbose { get; set; } = false; }