Added initial version 0.1.0
This commit is contained in:
parent
6aa4cb8596
commit
416759c213
64 changed files with 2181 additions and 0 deletions
11
Runtime/ValidatorResult.cs
Normal file
11
Runtime/ValidatorResult.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
namespace Module.ProjectValidator
|
||||
{
|
||||
public struct ValidatorResult
|
||||
{
|
||||
public EValidatorSeverity Severity;
|
||||
public string Message;
|
||||
|
||||
public static ValidatorResult Valid => new();
|
||||
public static ValidatorResult Create(EValidatorSeverity severity, string message) => new() { Severity = severity, Message = message };
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue