members-database/enums/salutation.ts

7 lines
97 B
TypeScript
Raw Permalink Normal View History

2024-08-19 10:47:10 +00:00
export enum Salutation {
Sir = "sir",
Madam = "madam",
other = "other",
none = "none",
}