fix object type without ref for CSharp

This commit is contained in:
wing328
2015-05-22 14:12:53 +08:00
parent 2b7bbd9513
commit df4b952312
3 changed files with 11 additions and 4 deletions

View File

@@ -83,6 +83,7 @@ public class CSharpClientCodegen extends DefaultCodegen implements CodegenConfig
typeMapping.put("file", "string"); // path to file
typeMapping.put("array", "List");
typeMapping.put("map", "Dictionary");
typeMapping.put("object", "Object");
}