Files
Ferme/frontend/services/dto/reception-data.ts

10 lines
202 B
TypeScript

export interface ReceptionData {
id: number
dsd: number | null
licensePlate: string | null
weight: number | null
receptionDate: string
currentStep: number
isValid: boolean
}