Files
SIRH/frontend/services/dto/user.ts
tristan 0897154460
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
feat : ajout d'un écran pour le récap congés et RTT
2026-04-14 15:08:45 +02:00

11 lines
197 B
TypeScript

import type { Employee } from './employee'
export type User = {
id: number
username: string
roles: string[]
isLocked: boolean
hasLeaveRecapAccess: boolean
employee?: Employee | null
}