Browse Source

basic realities

master
Rob Colbert 3 months ago
parent
commit
c834e29517
  1. 19
      src/app/models/lib/human-gender.ts
  2. 19
      src/app/models/lib/human-sex.ts

19
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",
}

19
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",
}
Loading…
Cancel
Save