member tables

This commit is contained in:
Julian Krauser 2024-09-14 11:32:34 +02:00
parent 75fb556796
commit 10db9a40f4
14 changed files with 483 additions and 26 deletions

6
src/enums/salutation.ts Normal file
View file

@ -0,0 +1,6 @@
export enum Salutation {
Sir = "sir",
Madam = "madam",
other = "other",
none = "none",
}