aboutsummaryrefslogtreecommitdiffhomepage
path: root/csharp/protos/unittest_issues.proto
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/protos/unittest_issues.proto')
-rw-r--r--csharp/protos/unittest_issues.proto9
1 files changed, 8 insertions, 1 deletions
diff --git a/csharp/protos/unittest_issues.proto b/csharp/protos/unittest_issues.proto
index 989b3dc4..6c9f7634 100644
--- a/csharp/protos/unittest_issues.proto
+++ b/csharp/protos/unittest_issues.proto
@@ -116,4 +116,11 @@ message TestJsonFieldOrdering {
string o2_string = 3;
}
-} \ No newline at end of file
+}
+
+message TestJsonName {
+ // Message for testing the effects for of the json_name option
+ string name = 1;
+ string description = 2 [json_name = "desc"];
+ string guid = 3 [json_name = "exid"];
+}