correct type errors
This commit is contained in:
parent
bdc139f37f
commit
d5c33d899f
5 changed files with 19 additions and 5 deletions
|
@ -1,8 +1,11 @@
|
|||
import type { VehicleTypeViewModel } from "../vehicleType/vehicleType.models";
|
||||
|
||||
export interface VehicleViewModel {
|
||||
id: string;
|
||||
name: string;
|
||||
location: string;
|
||||
vehicleTypeId: string;
|
||||
vehicleType: VehicleTypeViewModel;
|
||||
}
|
||||
|
||||
export interface CreateVehicleViewModel {
|
||||
|
@ -15,5 +18,4 @@ export interface UpdateVehicleViewModel {
|
|||
id: string;
|
||||
name: string;
|
||||
location: string;
|
||||
vehicleTypeId: string;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue