9 lines
122 B
JavaScript
9 lines
122 B
JavaScript
export class Variable {
|
|
key;
|
|
value;
|
|
|
|
constructor(k, v) {
|
|
this.key = k;
|
|
this.value = v;
|
|
}
|
|
} |