"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class Action {
constructor(jsonString, room = {}) {
this.room = room;
if (jsonString != null) {
for (let key in jsonString) {
this[key] = jsonString[key];
}
}
}
}
exports.default = Action;