upload nodeb rnib reader version 1.0.5
[ric-plt/nodeb-rnib.git] / entities / cell.proto
diff --git a/entities/cell.proto b/entities/cell.proto
new file mode 100644 (file)
index 0000000..19efaea
--- /dev/null
@@ -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