demo data

This commit is contained in:
Julian Krauser 2025-03-26 16:56:07 +01:00
parent 5faa4b7906
commit 36ca3d90a7
29 changed files with 304 additions and 99 deletions

View file

@ -1,13 +1,16 @@
export interface VehicleViewModel {
id: string;
name: string;
type: string;
}
export interface CreateVehicleViewModel {
name: string;
type: string;
}
export interface UpdateVehicleViewModel {
id: string;
name: string;
type: string;
}