UNPKG

@amirmarmul/waba-common

Version:

![GitHub release](https://img.shields.io/github/v/release/amirmarmul/waba-common?style=flat-square)

14 lines (13 loc) 337 B
"use strict"; 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;