winmr-api/Services/Scanners/ScanTarget.cs
2025-07-04 00:04:51 +03:00

18 lines
448 B
C#

/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2024-2025 Gregory Lirent */
namespace WebmrAPI.Services.Scanners
{
[Flags]
public enum ScanTarget : byte
{
Processes = 0x01,
MemoryRegions = 0x02,
Modules = 0x04,
Threads = 0x08,
ProcessDetails = MemoryRegions | Modules | Threads,
All = Processes | ProcessDetails
}
}