@pashoo2/clean-architecture-boilerplate
Version:
Clean architecture boilerplate
14 lines • 427 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MultiValuesValueObjectAsync = void 0;
class MultiValuesValueObjectAsync {
constructor(__value) {
this.__value = __value;
this._validate();
}
get value() {
return this.__value;
}
}
exports.MultiValuesValueObjectAsync = MultiValuesValueObjectAsync;
//# sourceMappingURL=multiValuesValueObjectAsync.js.map