"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isEntity = void 0;
const domain_1 = require("../domain");
const isEntity = (target) => target.__proto__.name === domain_1.DomainEntity.name;
exports.isEntity = isEntity;