self defined value tables - getters

This commit is contained in:
Julian Krauser 2024-09-04 14:01:22 +02:00
parent c85f23ed73
commit ddb355836a
28 changed files with 1067 additions and 0 deletions

View file

@ -0,0 +1,5 @@
export interface QualificationViewModel {
id: number;
qualification: string;
description: string | null;
}