9 lines
236 B
C#
9 lines
236 B
C#
namespace AutoScan.Options;
|
|
|
|
public class ScannerOptions
|
|
{
|
|
public string? Exe { get; set; }
|
|
public string? ConfigFile { get; set; }
|
|
public string? DetectionFolder { get; set; }
|
|
public bool RunDry { get; set; } = false;
|
|
} |