mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
15 lines
297 B
Protocol Buffer
15 lines
297 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gradido;
|
|
|
|
import "BasicTypes.proto";
|
|
|
|
// need signature from this group and from parent (if it isn't zero)
|
|
message StateCreateGroup {
|
|
string name = 1;
|
|
Key groupPublicKey = 2;
|
|
Key parentGroupPublicKey = 3;
|
|
reserved "hederaConsensusId";
|
|
reserved 4;
|
|
|
|
} |