members-database/enums/salutation.ts
2024-08-19 12:47:10 +02:00

6 lines
97 B
TypeScript

export enum Salutation {
Sir = "sir",
Madam = "madam",
other = "other",
none = "none",
}