export class Parameter { name = ""; type = ""; get() { return `${this.type} ${this.name}`; } }