13 lines
248 B
C++
13 lines
248 B
C++
#pragma once
|
|
|
|
#include "storage/label/label_collection.hpp"
|
|
#include "storage/model/edge_list.hpp"
|
|
#include "storage/model/property_model.hpp"
|
|
|
|
class VertexModel : public PropertyModel
|
|
{
|
|
public:
|
|
EdgeList in, out;
|
|
LabelCollection labels;
|
|
};
|