feat : first commit

This commit is contained in:
2026-02-03 18:04:06 +01:00
parent 43b0364a5a
commit a5dcd5e3e9
101 changed files with 29976 additions and 96 deletions

View File

@@ -0,0 +1,6 @@
export type AbsenceType = {
id: number
code: string
label: string
color: string
}

View File

@@ -0,0 +1,11 @@
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
}

View File

@@ -0,0 +1,5 @@
export type Employee = {
id: number
firstName: string
lastName: string
}

View File

@@ -0,0 +1,4 @@
export type UserData = {
id: number
username: string
}