aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/addressbook.proto
diff options
context:
space:
mode:
Diffstat (limited to 'examples/addressbook.proto')
-rw-r--r--examples/addressbook.proto4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/addressbook.proto b/examples/addressbook.proto
index 23cc2f97..b4b33b4c 100644
--- a/examples/addressbook.proto
+++ b/examples/addressbook.proto
@@ -9,6 +9,8 @@
// [START declaration]
syntax = "proto3";
package tutorial;
+
+import "google/protobuf/timestamp.proto";
// [END declaration]
// [START java_declaration]
@@ -38,6 +40,8 @@ message Person {
}
repeated PhoneNumber phones = 4;
+
+ google.protobuf.Timestamp last_updated = 5;
}
// Our address book file is just one of these.