export class Variable { key; value; constructor(k, v) { this.key = k; this.value = v; } }