UNPKG

cypher-engine

Version:

Cypher Engine to generate Cypher queries

11 lines (9 loc) 271 B
import { Property } from './Property'; export class SetProperty { public variableName: string; public property: Property; constructor(variableName: string, updateProperty: Property) { this.variableName = variableName; this.property = updateProperty; } }