experiments/csharp/E052-LineCountBenchmarks/Options.cs

17 lines
411 B
C#
Raw Normal View History

2024-05-04 20:16:52 +00:00
internal class Options
{
public bool Whitespace { get; set; } = false;
public IEnumerable<string> Ignore { get; set; } = Array.Empty<string>();
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;
}