import type { Site } from './site' import type { Contract } from './contract' export type Employee = { id: number firstName: string lastName: string site: Site contract?: Contract | null displayOrder?: number }