feat : first commit
This commit is contained in:
11
frontend/services/dto/absence.ts
Normal file
11
frontend/services/dto/absence.ts
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user