20 lines
283 B
Protocol Buffer
20 lines
283 B
Protocol Buffer
syntax = "proto3";
|
|
package tdb;
|
|
|
|
message TEST_Main {
|
|
uint64 id = 1;
|
|
string guarantee = 2;
|
|
}
|
|
|
|
message TEST_OwnedBy {
|
|
uint64 id = 1;
|
|
uint64 mainId = 2;
|
|
string guarantee = 3;
|
|
}
|
|
|
|
message TEST_ArrayHas {
|
|
uint64 id = 1;
|
|
repeated uint64 mainIds = 2;
|
|
string guarantee = 3;
|
|
}
|