From c834e29517447659e206d357a43ec5d257e6addd Mon Sep 17 00:00:00 2001 From: Rob Colbert Date: Sun, 2 Feb 2025 12:27:02 -0500 Subject: [PATCH] basic realities --- src/app/models/lib/human-gender.ts | 19 +++++++++++++++++++ src/app/models/lib/human-sex.ts | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 src/app/models/lib/human-gender.ts create mode 100644 src/app/models/lib/human-sex.ts diff --git a/src/app/models/lib/human-gender.ts b/src/app/models/lib/human-gender.ts new file mode 100644 index 0000000..e087ad4 --- /dev/null +++ b/src/app/models/lib/human-gender.ts @@ -0,0 +1,19 @@ +// app/models/lib/human-gender.ts +// Copyright (C) 2025 DTP Technologies, LLC +// All Rights Reserved + +/* + * This project does not have a CODE_OF_CONDUCT.md document in it, and this is + * the extent of the acknowledgement we give to "other" genders. + * + * "Other," is my final answer. This is not open for debate. Be at peace with + * it, or leave. + * + * -Rob + */ + +export enum HumanGender { + Man = "man", + Woman = "woman", + Other = "other", +} diff --git a/src/app/models/lib/human-sex.ts b/src/app/models/lib/human-sex.ts new file mode 100644 index 0000000..60a2f8c --- /dev/null +++ b/src/app/models/lib/human-sex.ts @@ -0,0 +1,19 @@ +// app/models/lib/human-sex.ts +// Copyright (C) 2025 DTP Technologies, LLC +// All Rights Reserved + +/* + * This project does not have a CODE_OF_CONDUCT.md document in it, and this is + * the extent of the acknowledgement we give to "other" sexes. + * + * "Other," is my final answer. This is not open for debate. Be at peace with + * it, or leave. + * + * -Rob + */ + +export enum HumanSex { + Male = "male", + Female = "female", + Other = "other", +}