summaryrefslogtreecommitdiff
blob: 22969af2290b86557644ceb18b9c034d8c9de28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
message Member {
  // Unique idenfier for each member.
  optional int64 id = 1;

  // Email information
  repeated string email = 2;

  // Name
  repeated string name = 3;

  // microsecond timestamp of joining.
  optional int64 join_timestamp_us = 4;

  // microsecond timestamp of any elections member participated in
  repeated int64 voted_in_election = 5;
}