14 lines
303 B
TypeScript
14 lines
303 B
TypeScript
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'
|
|
}
|