Files
ISA-Frontend/apps/isa-app/src/swagger/cat/models/autocomplete-dto.ts
Lorenz Hilpert f37dfd41f1 Merged PR 1813: Strukturanpassung
Related work items: #4832
2024-10-16 14:07:57 +00:00

27 lines
305 B
TypeScript

/* tslint:disable */
/**
* Auocomplete-Ergebnis
*/
export interface AutocompleteDTO {
/**
* Anzeige / Bezeichner
*/
display?: string;
/**
* Id
*/
id?: string;
/**
* Abfragewert
*/
query?: string;
/**
* Art (z.B. Titel, Autor, Verlag, ...)
*/
type?: string;
}