[REQ] [ASPNETCORE] Add value types for the ASPNETCORE generator (#18646)

* Add value types for the ASPNETCORE generator

* generate samples
This commit is contained in:
Evgenii
2024-05-21 12:45:54 +06:00
committed by GitHub
parent ede6458d19
commit 73598b9dbb
38 changed files with 107 additions and 107 deletions

View File

@@ -309,7 +309,7 @@ public class AspNetServerCodegen extends AbstractCSharpCodegen {
@Override
protected Set<String> getValueTypes() {
return new HashSet<>(Arrays.asList("decimal", "bool", "int", "uint", "long", "ulong", "float", "double"));
return new HashSet<>(Arrays.asList("decimal", "bool", "int", "uint", "long", "ulong", "float", "double", "DateTime", "DateOnly", "DateTimeOffset", "Guid"));
}
@Override