UNPKG

cecon-interfaces

Version:
13 lines (12 loc) 326 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IEntity = void 0; var IEntity = /** @class */ (function () { function IEntity() { this.createdAt = new Date(); this.id = ''; this.updatedAt = new Date(); } return IEntity; }()); exports.IEntity = IEntity;