is-monitor/is-monitor-frontend/src/app/is-model/reference/entities/Context.ts

11 lines
243 B
TypeScript

import { Entity } from './Entity';
import { IsParentOf } from '../relations/IsParentOf';
export class Context extends Entity {
name: string;
parent: IsParentOf<Context, Context>;
children: Array<IsParentOf<Context, Context>>;
}