count instances to type

This commit is contained in:
Julian Krauser 2025-07-11 09:33:37 +02:00
parent 705297ba50
commit c42a41d895
12 changed files with 24 additions and 3 deletions

View file

@ -2,4 +2,5 @@ export interface EquipmentTypeViewModel {
id: string;
type: string;
description: string;
equipmentCount: number;
}

View file

@ -2,4 +2,5 @@ export interface VehicleTypeViewModel {
id: string;
type: string;
description: string;
vehicleCount: number;
}

View file

@ -2,4 +2,5 @@ export interface WearableTypeViewModel {
id: string;
type: string;
description: string;
wearableCount: number;
}