13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
import type { Employee } from './employee'
|
|
|
|
export type Formation = {
|
|
id: number
|
|
startDate: string
|
|
endDate: string
|
|
comment: string | null
|
|
justificatifPath: string | null
|
|
justificatifName: string | null
|
|
createdAt: string
|
|
employee?: Employee
|
|
}
|