mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
14 lines
308 B
Protocol Buffer
14 lines
308 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gradido;
|
|
|
|
import "BasicTypes.proto";
|
|
|
|
// need signature from group admin or
|
|
// percent of group users another than the receiver
|
|
message TransactionCreation {
|
|
ReceiverAmount receiverAmount = 1;
|
|
// TODO: Change to collision resistent type
|
|
sint32 ident_hash = 2;
|
|
|
|
} |