feat: add property path support

This commit is contained in:
Louis Seubert 2026-05-16 11:38:17 +02:00
commit 8f54ff4e31
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
8 changed files with 276 additions and 49 deletions

View file

@ -77,7 +77,7 @@ var validation = validator.Validate(new CreateUserRequest(
foreach (var problem in validation.Problems)
{
Console.WriteLine($"{problem.PropertyName}: {problem.Message}");
Console.WriteLine($"{problem.PropertyPath}: {problem.Message}");
}
```