11 lines
No EOL
367 B
C#
11 lines
No EOL
367 B
C#
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 };
|
|
}
|
|
} |