travopti/frontend/src/app/interfaces/preset.interface.ts
2020-06-14 20:57:09 +02:00

8 lines
162 B
TypeScript

/** Represents the structure of a search preset. */
export interface Preset {
preset_id: number;
parameter: string;
tag_label: string;
value: number[];
}