ff-admin-server/src/enums/salutation.ts

7 lines
97 B
TypeScript
Raw Normal View History

2024-09-14 11:32:34 +02:00
export enum Salutation {
2024-09-26 13:16:43 +02:00
sir = "sir",
madam = "madam",
2024-09-14 11:32:34 +02:00
other = "other",
none = "none",
}