13 lines
274 B
Protocol Buffer
13 lines
274 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option go_package = "git.coopgo.io/coopgo-platform/groups-management/grpcapi";
|
||
|
|
||
|
import "google/protobuf/struct.proto";
|
||
|
|
||
|
message Group {
|
||
|
string id = 1;
|
||
|
string namespace = 2;
|
||
|
repeated string members = 3;
|
||
|
google.protobuf.Struct data = 4;
|
||
|
}
|