NodeAttribute.js 163 B

1234567891011121314
  1. class NodeAttribute {
  2. constructor( name, type ) {
  3. this.isNodeAttribute = true;
  4. this.name = name;
  5. this.type = type;
  6. }
  7. }
  8. export default NodeAttribute;