import type { EntityId } from "../CustomTypes/EntityId";
import type { Name } from "./Name";
export interface IDomainEntity {
    id: EntityId;
    name: Name;
}
