X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=entities%2Fcell.proto;fp=entities%2Fcell.proto;h=19efaea1071d21448d21a89e40b74e46355ac944;hb=286ce41c7d5049e688a40f68e4c6681a645add3d;hp=0000000000000000000000000000000000000000;hpb=e8b074b74616674d29327d306f88cca56ffd0ae2;p=ric-plt%2Fnodeb-rnib.git 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