enable public report

This commit is contained in:
Julian Krauser 2025-07-16 12:24:48 +02:00
parent 766114bf53
commit 6aae09cd03
16 changed files with 567 additions and 7 deletions

View file

@ -11,6 +11,14 @@ export interface VehicleViewModel {
vehicleType: VehicleTypeViewModel;
}
export interface MinifiedVehicleViewModel {
id: string;
code?: string;
name: string;
type: string;
assigned: "vehicle";
}
export interface CreateVehicleViewModel {
code?: string;
name: string;