cabana/src/models/can/BoardUnit.js

12 lines
172 B
JavaScript

export default class BoardUnit {
constructor(name) {
this.name = name;
this.attributes = {};
this.comment = null;
}
text() {
return this.name;
}
}