This commit is contained in:
Matthias Hochmeister
2026-03-14 14:10:05 +01:00
parent 992ca8e104
commit 8d03c13bee
7 changed files with 227 additions and 10 deletions

View File

@@ -228,3 +228,14 @@ export interface Fahrgenehmigung {
klasse: string;
created_at: string;
}
export interface Ausbildung {
id: string;
kursname: string;
kurs_datum: string | null;
ablaufdatum: string | null;
ort: string | null;
bemerkung: string | null;
status: string;
created_at: string;
}