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