#ifndef MEMGRAPH_CYPHER_AST_AST_PROPERTY_HPP #define MEMGRAPH_CYPHER_AST_AST_PROPERTY_HPP #include "list.hpp" #include "identifier.hpp" #include "expr.hpp" namespace ast { struct Property : public AstNode { Property(Identifier* idn, Expr* value) : idn(idn), value(value) {} Identifier* idn; Expr* value; }; struct PropertyList : public List { using List::List; }; } #endif