4fd21296eac493230cfb702f7f444264fbd68075
[ric-plt/nodeb-rnib.git] / entities / cells.proto
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 }