Files
SIRH/frontend/services/dto/absence.ts
2026-02-03 18:04:06 +01:00

12 lines
238 B
TypeScript

import type { Employee } from './employee'
import type { AbsenceType } from './absence-type'
export type Absence = {
id: number
startDate: string
endDate: string
comment?: string | null
employee: Employee
type: AbsenceType
}