export class Assign {
  
  constructor (id, expression) {
    this.id = id;
    this.expression = expression;
  }
}