is-monitor/is-monitor-frontend/src/app/is-model/reference/relations/IsParentOf.ts

8 lines
187 B
TypeScript
Raw Normal View History

2019-10-16 11:48:47 +02:00
import { Context } from '../entities/Context';
import { Relation } from './Relation';
2019-10-16 14:41:51 +02:00
export class IsParentOf<Out extends Context, In extends Context>
2019-10-16 11:48:47 +02:00
extends Relation<Out, In> {
}