Files
codeql/powershell/extractor/Semmle.Extraction.PowerShell/Extractor/AnalysisAction.cs
2024-08-14 18:11:02 +01:00

12 lines
234 B
C#

namespace Semmle.Extraction.PowerShell
{
/// <summary>
/// What action was performed when extracting a file.
/// </summary>
public enum AnalysisAction
{
Extracted,
UpToDate,
Excluded
}
}