1
0
mirror of https://github.com/maxartz15/Validator.git synced 2025-06-25 19:16:06 +02:00

Stats, Settings, GUI toolbar, Filtering

This commit is contained in:
max
2021-12-29 14:41:48 +01:00
parent 4b9b5a8c1d
commit 2eee6cb661
2 changed files with 206 additions and 98 deletions

View File

@ -12,7 +12,7 @@ namespace Validator
public class Report
{
public struct ReportMessage
public class ReportMessage
{
public Object Target => target;
public WarningType WarningType => warningType;
@ -37,8 +37,8 @@ namespace Validator
}
public string Name => name;
public IList<ReportMessage> Reports => reports.AsReadOnly();
private readonly string name;
private readonly List<ReportMessage> reports = new List<ReportMessage>();