All checks were successful
Auto Tag Develop / tag (push) Successful in 5s
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #322 | Page horaire | ## Description de la PR [#322] Page horaire ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [ ] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #4 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
12 lines
224 B
TypeScript
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
|
|
}
|