Refactoring and bugfixing

This commit is contained in:
barsdeveloper
2021-10-24 00:17:16 +02:00
parent a34be2351e
commit f80c9f8dc1
16 changed files with 274 additions and 1396 deletions

View File

@@ -0,0 +1,14 @@
import Entity from "./Entity"
import GuidEntity from "./GuidEntity"
export default class PinReferenceEntity extends Entity {
static attributes = {
objectName: String,
pinGuid: GuidEntity
}
getAttributes() {
return PinReferenceEntity.attributes
}
}