aboutsummaryrefslogtreecommitdiffstats
path: root/proto/pseudonyms/account.proto
blob: bdca80c39d9e3d47f305bcf3cc5c24ced8ba9386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}