blob: 19efaea1071d21448d21a89e40b74e46355ac944 [file] [log] [blame]
syntax = "proto3";
package entities;
import "gnb.proto";
import "enb.proto";
message Cell{
enum Type{
UNKNOWN_CELL = 0;
LTE_CELL = 1;
NR_CELL = 2;
}
Type type = 1;
oneof cell{
ServedCellInfo served_cell_info = 2;
ServedNRCell served_nr_cell = 3;
}
}