vehicle update and code

This commit is contained in:
Julian Krauser 2025-05-13 12:30:57 +02:00
parent 8766bbce08
commit 0ea9601ea3
8 changed files with 135 additions and 112 deletions

View file

@ -3,6 +3,7 @@ import type { VehicleTypeViewModel } from "../vehicleType/vehicleType.models";
export interface VehicleViewModel {
id: string;
code?: string;
name: string;
location: string;
vehicleTypeId: string;
@ -11,6 +12,7 @@ export interface VehicleViewModel {
}
export interface CreateVehicleViewModel {
code?: string;
name: string;
location: string;
vehicleTypeId: string;
@ -18,6 +20,7 @@ export interface CreateVehicleViewModel {
export interface UpdateVehicleViewModel {
id: string;
code?: string;
name: string;
location: string;
}