@amirmarmul/waba-common
Version:

14 lines (13 loc) • 337 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Entity = void 0;
const UniqueId_1 = require("../../core/domain/UniqueId");
class Entity {
_id;
props;
constructor(props, id) {
this._id = id ?? new UniqueId_1.UniqueId();
this.props = props;
}
}
exports.Entity = Entity;