Files
SIRH/frontend/services/dto/mileage-allowance.ts
tristan 17f871e82d
All checks were successful
Auto Tag Develop / tag (push) Successful in 8s
feat : modification écran RTT + modification écran frais
2026-03-19 17:10:11 +01:00

13 lines
275 B
TypeScript

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