casa-bot/src/CasaBot/AutoScan/Options/ScannerOptions.cs

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;
}