Modified JavascriptClientGenerator to handle nullable types and indicate them by ?type instead of Nullable<>. Bumped package version to 1.9.4

This commit is contained in:
2025-10-19 09:17:22 -07:00
parent 54de2def1f
commit ab96e86a0e
3 changed files with 8 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ namespace MontoyaTech.Rest.Net.Example
public string[] Array = null;
public ulong Property { get; set; }
public ulong? Property { get; set; }
public User() { }