Improved logging for EntityResults

This commit is contained in:
2025-12-13 17:36:51 +01:00
parent dedac5da3a
commit 896e4b89d6
2 changed files with 21 additions and 7 deletions

View File

@@ -7,6 +7,10 @@ public class EntityQueryResults
{
[JsonPropertyName("Results")]
public required List<EntityQueryResult> Results { get; set; }
[JsonPropertyName("Success")]
public required bool Success { get; set; }
[JsonPropertyName("Message")]
public string? Message { get; set; }
}
public class EntityQueryResult
@@ -75,5 +79,7 @@ public class EntityDeleteResults
{
[JsonPropertyName("Success")]
public required bool Success { get; set; }
[JsonPropertyName("Message")]
public string? Message { get; set; }
}