UNPKG

@openinc/parse-server-opendash

Version:
22 lines (21 loc) 507 B
"use strict"; 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;