ss412g | 286ce41 | 2019-07-04 14:00:29 +0300 | [diff] [blame^] | 1 | syntax = "proto3"; |
2 | package entities; | ||||
3 | import "gnb.proto"; | ||||
4 | import "enb.proto"; | ||||
5 | |||||
6 | message Cell{ | ||||
7 | enum Type{ | ||||
8 | UNKNOWN_CELL = 0; | ||||
9 | LTE_CELL = 1; | ||||
10 | NR_CELL = 2; | ||||
11 | } | ||||
12 | Type type = 1; | ||||
13 | oneof cell{ | ||||
14 | ServedCellInfo served_cell_info = 2; | ||||
15 | ServedNRCell served_nr_cell = 3; | ||||
16 | } | ||||
17 | } |