code to create and delete groupMmber collection in DB

This commit is contained in:
soukainna
2023-01-17 15:07:16 +01:00
parent 57540f2587
commit 312200e210
11 changed files with 350 additions and 154 deletions

View File

@@ -5,7 +5,8 @@ option go_package = "git.coopgo.io/coopgo-platform/groups-management/grpcapi";
import "google/protobuf/struct.proto";
message GroupMember {
string memberid = 1;
string groupid = 2;
google.protobuf.Struct data = 3;
string id = 1;
string memberid = 2;
string groupid = 3;
google.protobuf.Struct data = 4;
}