11 lines
229 B
Protocol Buffer
11 lines
229 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = ".;pb";
|
|
|
|
message Cache_UserData {
|
|
uint32 UserId = 1;
|
|
string SessionId = 2;
|
|
string GatewayServiceId = 3;
|
|
string NiceName = 4;
|
|
string Email = 5;
|
|
string Password = 6;
|
|
} |