import IEntityBase from "./IEntityBase"; export default class EntityBase implements IEntityBase { GUID?: string; toString(): string { return ''; } }