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/cell.proto b/entities/cell.proto
new file mode 100644
index 0000000..19efaea
--- /dev/null
+++ b/entities/cell.proto
@@ -0,0 +1,17 @@
+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;
+ }
+}
\ No newline at end of file