2022-12-19 08:14:31 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option go_package = "git.coopgo.io/coopgo-platform/groups-management/grpcapi";
|
|
|
|
|
|
|
|
import "google/protobuf/struct.proto";
|
|
|
|
|
|
|
|
message GroupMember {
|
2023-01-17 14:07:16 +00:00
|
|
|
string id = 1;
|
|
|
|
string memberid = 2;
|
|
|
|
string groupid = 3;
|
|
|
|
google.protobuf.Struct data = 4;
|
2022-12-19 08:14:31 +00:00
|
|
|
}
|