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
/
Property.ts
10 lines
(8 loc)
•
207 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
class
Property
{
public
name
:
string
;
public
value
:
string
|
number
|
boolean
;
constructor
(
name
:
string
,
value
:
string
|
number
|
boolean
) {
this
.
name
= name;
this
.
value
= value; } }