feat(employee) : add contractPhases TS DTO

This commit is contained in:
2026-05-19 11:34:51 +02:00
parent 8f355e05ad
commit 5fc9dd1ec9
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import type { ContractType } from './contract'
export type ContractPhase = {
id: number
contractType: ContractType
weeklyHours: number | null
isDriver: boolean
startDate: string
endDate: string | null
periodIds: number[]
isCurrent: boolean
contractNature: 'CDI' | 'CDD' | 'INTERIM'
}