Files
SIRH/frontend/services/dto/employee.ts
2026-02-18 17:59:57 +01:00

12 lines
224 B
TypeScript

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
}