Files
SIRH/frontend/services/dto/mileage-allowance.ts

11 lines
205 B
TypeScript

export type MileageAllowance = {
id: number
month: string
kilometers: number
amount: number
comment: string | null
receiptPath: string | null
receiptName: string | null
createdAt: string
}