csharp-models-to-typescript
csharp-models-to-typescript copied to clipboard
Bug - Conversion Error
This block:
[OptionalField]
public UserType UserType= UserType.Other;
is converted to this:
userType=: UserType;
but must be converted to this:
userType: UserType;