argos/dmp-frontend/src/app/core/query/reference-search.lookup.ts

23 lines
380 B
TypeScript
Raw Normal View History

2023-10-30 16:53:30 +01:00
import { Lookup } from "@common/model/lookup";
2023-11-15 15:09:24 +01:00
import { Guid } from "@common/types/guid";
2023-10-30 16:53:30 +01:00
export class ReferenceSearchLookup extends Lookup {
2023-10-30 16:53:30 +01:00
like: string;
referenceTypeId: Guid;
2023-10-30 16:53:30 +01:00
key: string;
2023-11-15 15:09:24 +01:00
constructor() {
super();
}
}
export class ReferenceSearchDefinitionLookup extends Lookup {
2023-11-15 15:09:24 +01:00
like: string;
referenceTypeId: Guid;
key: string;
2023-10-30 16:53:30 +01:00
constructor() {
super();
}
}