@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
22 lines (21 loc) • 507 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RegisteredNotification = void 0;
/**
*
*/
class RegisteredNotification {
constructor(key, label, description) {
this.key = key;
this.label = label;
this.description = description;
}
get(attribute) {
return this[attribute];
}
set(attribute, value) {
this[attribute] = value;
return this;
}
}
exports.RegisteredNotification = RegisteredNotification;