10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
export type MileageAllowance = {
|
|
id: number
|
|
month: string
|
|
kilometers: number
|
|
comment: string | null
|
|
receiptPath: string | null
|
|
receiptName: string | null
|
|
createdAt: string
|
|
}
|