#ifndef MEMGRAPH_STORAGE_EDGE_HPP #define MEMGRAPH_STORAGE_EDGE_HPP #include #include "model/record.hpp" struct Vertex; struct Edge : public Record { Vertex* from; Vertex* to; }; #endif