@neoprospecta/angular-data-box
Version:
Data table with REST implementation.
13 lines • 536 B
JavaScript
var DataBoxAction = (function () {
function DataBoxAction(object) {
if (object === void 0) { object = {}; }
this.title = object.title ? object.title : undefined;
this.action = object.action ? object.action : undefined;
this.icon = object.icon ? object.icon : undefined;
this.color = object.color ? object.color : undefined;
this.hide = object.hide ? object.hide : false;
}
return DataBoxAction;
}());
export { DataBoxAction };
//# sourceMappingURL=data-box-action.model.js.map