UNPKG

@commodo/fields-storage

Version:

We're working hard to get all the docs in order. New articles will be added daily.

40 lines (31 loc) 580 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _ = require("."); class StoragePoolEntry { constructor(model) { this.model = model; this.meta = { createdOn: new Date() }; } getModel() { return this.model; } setModel(model) { this.model = model; return this; } getMeta() { return this.meta; } setMeta(meta) { this.meta = meta; return this; } } var _default = StoragePoolEntry; exports.default = _default; //# sourceMappingURL=StoragePoolEntry.js.map