Minor fixes for sonarcloud

This commit is contained in:
2025-06-21 01:00:21 +02:00
parent fa4f1c0791
commit 87adaffa3e
2 changed files with 6 additions and 6 deletions

View File

@@ -4,6 +4,6 @@ namespace BasicDotnetTemplate.MainProject.Models.Api.Base;
public class ValidationError
{
public string Message { get; set; }
public Dictionary<string, List<string>> Errors { get; set; }
public string? Message { get; set; }
public Dictionary<string, List<string>>? Errors { get; set; }
}