export default interface Entity {
    id: string;
    displayName: string;
    toString(): string;
}
