15 lines
320 B
TypeScript
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
|
|
}
|