mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 21:33:08 +00:00
34 lines
878 B
C#
34 lines
878 B
C#
namespace BinaryObjectScanner
|
|
{
|
|
/// <summary>
|
|
/// Scanning options
|
|
/// </summary>
|
|
public class Options
|
|
{
|
|
/// <summary>
|
|
/// Determines whether archives are decompressed and scanned
|
|
/// </summary>
|
|
public bool ScanArchives { get; set; }
|
|
|
|
/// <summary>
|
|
/// Determines if content matches are used
|
|
/// </summary>
|
|
public bool ScanContents { get; set; }
|
|
|
|
/// <summary>
|
|
/// Determines if path matches are used
|
|
/// </summary>
|
|
public bool ScanPaths { get; set; }
|
|
|
|
/// <summary>
|
|
/// Determines if subdirectories are scanned
|
|
/// </summary>
|
|
public bool ScanSubdirectories { get; set; }
|
|
|
|
/// <summary>
|
|
/// Determines if debug information is output
|
|
/// </summary>
|
|
public bool IncludeDebug { get; set; }
|
|
}
|
|
}
|