tryAGI / AutoSDK

Automated .NET SDKs for your APIs
https://autosdk.net
Other
15 stars 2 forks source link

Support Numeric Properties #13

Closed Tyler-IN closed 4 months ago

Tyler-IN commented 4 months ago

Added test scenario

Added quick fix

Tyler-IN commented 4 months ago

Before:

/// <summary>
/// <br/>Example: 1234
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("4")]
public string? 4 { get; set; }

After:

/// <summary>
/// <br/>Example: 1234
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("4")]
public string? _4 { get; set; }
Tyler-IN commented 4 months ago

addresses https://github.com/HavenDV/OpenApiGenerator/issues/12