Added initial version 0.1.0

This commit is contained in:
Anders Ejlersen 2026-05-17 22:12:04 +02:00
parent 6aa4cb8596
commit 416759c213
64 changed files with 2181 additions and 0 deletions

View file

@ -0,0 +1,11 @@
namespace Module.ProjectValidator
{
public enum EValidatorSeverity
{
Valid,
Warning,
Error,
MaxSeverityLevel = Error
}
}