Files
ueblueprint/cypress/fixtures/Entity1.js
2023-04-09 10:41:50 +02:00

20 lines
338 B
JavaScript

import IEntity from "../../js/entity/IEntity.js"
export default class Entity1 extends IEntity {
static attributes = {
a: {
type: Number,
},
b: {
type: Number,
},
}
constructor(values = {}) {
values.a ??= 8
values.b ??= 9
super(values)
}
}