export class Organization {
constructor(id, places, kind, parent) {
this.id = id;
this.places = places;
this.kind = kind;
this.type = "org";
this.events = [];
this._parent = parent;
}
get parent() {
return this._parent;
}
set parent(parent) {
this._parent = parent;
}
}