aboutsummaryrefslogtreecommitdiffstats
path: root/proto/pseudonyms/account.proto
diff options
context:
space:
mode:
Diffstat (limited to 'proto/pseudonyms/account.proto')
-rw-r--r--proto/pseudonyms/account.proto15
1 files changed, 15 insertions, 0 deletions
diff --git a/proto/pseudonyms/account.proto b/proto/pseudonyms/account.proto
new file mode 100644
index 0000000..bdca80c
--- /dev/null
+++ b/proto/pseudonyms/account.proto
@@ -0,0 +1,15 @@
+syntax = "proto3";
+
+package pseudonyms.account;
+
+import "google/protobuf/timestamp.proto";
+
+message Account {
+ string id = 1;
+}
+
+message CreateAccount {
+ string id = 1;
+ string account_id = 2;
+ google.protobuf.Timestamp cre_dt_tm = 3;
+}