Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [x] Pas de régression - [x] TU/TI/TF rédigée - [x] TU/TI/TF OK - [x] CHANGELOG modifié Reviewed-on: #19 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
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'
|
|
}
|