#ifndef MEMGRAPH_STORAGE_MODEL_VERTEX_HPP #define MEMGRAPH_STORAGE_MODEL_VERTEX_HPP #include #include "record.hpp" #include "edge.hpp" struct Vertex : public Record { std::vector in; std::vector out; }; #endif