enable public report

This commit is contained in:
Julian Krauser 2025-07-16 12:24:50 +02:00
parent 8f563d1058
commit 41c3093754
21 changed files with 307 additions and 19 deletions

View file

@ -13,3 +13,11 @@ export interface WearableViewModel {
wearableTypeId: string;
wearableType: WearableTypeViewModel;
}
export interface MinifiedWearableViewModel {
id: string;
code?: string;
name: string;
type: string;
assigned: "wearable";
}