mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
11 lines
233 B
Protocol Buffer
11 lines
233 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gradido;
|
|
|
|
import "BasicTypes.proto";
|
|
// at least 88 Byte
|
|
message Transfer {
|
|
repeated SenderAmount senderAmounts = 1; // je 48 Byte
|
|
repeated ReceiverAmount receiverAmounts = 2; // je 40 Byte
|
|
|
|
} |