ss412g | 286ce41 | 2019-07-04 14:00:29 +0300 | [diff] [blame^] | 1 | syntax = "proto3"; |
2 | package entities; | ||||
3 | import "cell.proto"; | ||||
4 | import "gnb.proto"; | ||||
5 | import "enb.proto"; | ||||
6 | |||||
7 | message Cells{ | ||||
8 | Cell.Type type = 1; | ||||
9 | oneof list{ | ||||
10 | ServedCellInfoList served_cell_infos = 2; | ||||
11 | ServedNRCellList served_nr_cells = 3; | ||||
12 | } | ||||
13 | } | ||||
14 | |||||
15 | message ServedCellInfoList{ | ||||
16 | repeated ServedCellInfo served_cells = 1; | ||||
17 | } | ||||
18 | |||||
19 | message ServedNRCellList{ | ||||
20 | repeated ServedNRCell served_cells = 1; | ||||
21 | } |