13 lines
275 B
TypeScript
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
|
|
}
|