package com.graphtest.model;

public enum NodeStatus {
    OK,
    EMPTY,
    COMMENT_ONLY,
    SYNTAX_ERROR,
    MISSING
}
