vehicle update and code
This commit is contained in:
parent
8766bbce08
commit
0ea9601ea3
8 changed files with 135 additions and 112 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue