We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can provide an implementation of ITypeNameGenerator via the CodeGeneratorSettingsBase.TypeNameGenerator setting to customize the class or interface name generation.
public class MyTypeNameGenerator : ITypeNameGenerator { public string Generate( JsonSchema4 schema, string typeNameHint, IEnumerable<string> reservedTypeNames) { ... } } settings.TypeNameGenerator = new MyTypeNameGenerator();