mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
27 lines
305 B
TypeScript
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;
|
|
}
|