upload nodeb rnib reader version 1.0.5
Change-Id: I705a12bcf28e764689dacebea2698da6eea18146
Signed-off-by: ss412g <shuky.har-noy@intl.att.com>
diff --git a/entities/cells.proto b/entities/cells.proto
new file mode 100644
index 0000000..4fd2129
--- /dev/null
+++ b/entities/cells.proto
@@ -0,0 +1,21 @@
+syntax = "proto3";
+package entities;
+import "cell.proto";
+import "gnb.proto";
+import "enb.proto";
+
+message Cells{
+ Cell.Type type = 1;
+ oneof list{
+ ServedCellInfoList served_cell_infos = 2;
+ ServedNRCellList served_nr_cells = 3;
+ }
+}
+
+message ServedCellInfoList{
+ repeated ServedCellInfo served_cells = 1;
+}
+
+message ServedNRCellList{
+ repeated ServedNRCell served_cells = 1;
+}
\ No newline at end of file