Various fixes

This commit is contained in:
barsdeveloper
2021-10-27 19:27:19 +02:00
parent 56c23fc192
commit 418630255e
41 changed files with 2401 additions and 2337 deletions

30
js/entity/VariableReferenceEntity.js Normal file → Executable file
View File

@@ -1,15 +1,15 @@
import Entity from "./Entity"
import Guid from "./primitive/Guid"
export default class VariableReferenceEntity extends Entity {
static attributes = {
MemberName: String,
MemberGuid: Guid,
bSelfContext: false
}
getAttributes() {
return VariableReferenceEntity.attributes
}
}
import Entity from "./Entity"
import Guid from "./primitive/Guid"
export default class VariableReferenceEntity extends Entity {
static attributes = {
MemberName: String,
MemberGuid: Guid,
bSelfContext: false
}
getAttributes() {
return VariableReferenceEntity.attributes
}
}