blob: 19efaea1071d21448d21a89e40b74e46355ac944 [file] [log] [blame]
ss412g286ce412019-07-04 14:00:29 +03001syntax = "proto3";
2package entities;
3import "gnb.proto";
4import "enb.proto";
5
6message 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}