codemp/proto/model/user.proto

11 lines
146 B
Protocol Buffer
Raw Normal View History

2023-12-18 23:36:15 +01:00
syntax = "proto2";
2023-12-03 19:54:55 +01:00
2023-12-18 23:36:15 +01:00
package codemp.model.user;
2023-12-03 19:54:55 +01:00
// payload identifying user
message UserIdentity{
2023-12-03 19:54:55 +01:00
// user identifier
2023-12-18 23:36:15 +01:00
required string id = 1;
2023-12-03 19:54:55 +01:00
}