member routes and controller base

This commit is contained in:
Julian Krauser 2024-09-16 12:37:06 +02:00
parent 5fdfdcbd1f
commit 93e27ab440
15 changed files with 531 additions and 133 deletions

View file

@ -0,0 +1,10 @@
import { Salutation } from "../../enums/salutation";
export interface MemberViewModel {
id: number;
salutation: Salutation;
firstname: string;
lastname: string;
nameaffix: string;
birthdate: Date;
}