UNPKG
cypher-engine
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Cypher Engine to generate Cypher queries
github.com/jdksloan/CypherEngine
cypher-engine
/
src
/
models
/
SetProperty.ts
11 lines
(9 loc)
•
271 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Property
}
from
'./Property'
;
export
class
SetProperty
{
public
variableName
:
string
;
public
property
:
Property
;
constructor
(
variableName
:
string
,
updateProperty
:
Property
) {
this
.
variableName
= variableName;
this
.
property
= updateProperty; } }