上传新的package

This commit is contained in:
2025-04-11 10:35:10 +08:00
parent 2511dc60dc
commit f7e101d56e
290 changed files with 195 additions and 170 deletions

View File

@@ -0,0 +1,29 @@
using System.Collections.Generic;
namespace wvdet.CodeChecker
{
public enum Level
{
Hint,
Warning,
Error,
}
public class Result
{
public string filepath;
public int warningCount;
public int errorCount;
public List<Detail> details = new List<Detail>();
}
public class Detail
{
public int line = -1;
public Level level;
public string suggestion;
public string guideline;
public string codeSnippet;
}
}