NoDeclaracao.js 138 B

12345678
  1. export class NoDeclaracao {
  2. constructor(id, tipo, valor = null) {
  3. this.id = id;
  4. this.tipo = tipo;
  5. this.valor = valor;
  6. }
  7. }