Files
SIRH/frontend/services/dto/absence.ts
tristan 2a8c874985
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
feat : ajout des demi-journées d'absence dans le calendrier et l'export pdf
2026-02-10 16:11:09 +01:00

15 lines
320 B
TypeScript

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