9 lines
121 B
Protocol Buffer
9 lines
121 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "ShopGoods.proto";
|
||
|
|
||
|
message Shop {
|
||
|
uint32 shopType = 1;
|
||
|
repeated ShopGoods goodsList = 2;
|
||
|
}
|