My endpoints use generic C# types like Resource[Employee], that unfortunately yields illegal class names (and strange filenames) in the generated C#.
The generated class/file names for the above example should be "Resource_Employee" rather then "Resource[Employee]" since it is a concrete instance that is being generated and not a generic type.
I.e. For any generic C# type GT the name of the generated file/class by swagger-codegen should be GT_A
My endpoints use generic C# types like Resource[Employee], that unfortunately yields illegal class names (and strange filenames) in the generated C#.
The generated class/file names for the above example should be "Resource_Employee" rather then "Resource[Employee]" since it is a concrete instance that is being generated and not a generic type.
I.e. For any generic C# type GT the name of the generated file/class by swagger-codegen should be GT_A