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

11 lines
243 B
TypeScript
Raw Normal View History

2019-10-16 11:48:47 +02:00
import { Entity } from './Entity';
import { IsParentOf } from '../relations/IsParentOf';
2019-10-16 14:41:51 +02:00
export class Context extends Entity {
2019-10-16 11:48:47 +02:00
name: string;
parent: IsParentOf<Context, Context>;
children: Array<IsParentOf<Context, Context>>;
}