UNPKG

@rr0/data

Version:
17 lines (16 loc) 358 B
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; } }