We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I would love the ability to add prefixed and/or suffixes to the generated classes.
This is applicable to all languages
Example: { person: {id: 1,name:"bob} }
Should output: class WelcomeDto { public PersonDto {get;set} }
class PersonDto { public long id {get;set;} public String name {get;set} }
Currently he names of the resulting classes matches the json input
It would also be nice to have a toggle to switch from class to record.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I would love the ability to add prefixed and/or suffixes to the generated classes.
Context (Input, Language)
This is applicable to all languages
Description
Example:
{
person: {id: 1,name:"bob}
}
Should output:
class WelcomeDto {
public PersonDto {get;set}
}
class PersonDto {
public long id {get;set;}
public String name {get;set}
}
Current Behaviour / Output
Currently he names of the resulting classes matches the json input
It would also be nice to have a toggle to switch from class to record.
The text was updated successfully, but these errors were encountered: