Files
Arbejd.com-react/src/mvvm/models/search-job.interface.ts
2026-02-14 10:46:50 +01:00

10 lines
251 B
TypeScript

import type { OccupationInterface } from "./occupation.interface";
export interface SearchJobInterface{
maxDistance?: number | undefined | null;
occupations: OccupationInterface[];
workTimes: number[];
workTypes: number[];
term?: string;
}