service base

This commit is contained in:
Julian Krauser 2025-05-28 17:06:56 +02:00
parent 8c81c8f336
commit 2433120e26
13 changed files with 494 additions and 0 deletions

View file

@ -9,6 +9,7 @@ export type DamageReportViewModel = {
done: boolean;
description: string;
providedImage: Array<string>;
reportedBy: string;
relatedId: string;
} & (
| {
@ -27,6 +28,7 @@ export type DamageReportViewModel = {
export interface CreateDamageReportViewModel {
description: string;
reportedBy: string;
affectedId: string;
affected: "equipment" | "vehicle" | "wearable";
}