mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
230 B
C#
12 lines
230 B
C#
namespace Semmle.Extraction.CSharp
|
|
{
|
|
/// <summary>
|
|
/// What action was performed when extracting a file.
|
|
/// </summary>
|
|
public enum AnalysisAction
|
|
{
|
|
Extracted,
|
|
UpToDate,
|
|
Excluded
|
|
}
|
|
} |