2 changed files with 38 additions and 0 deletions
@ -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", |
|||
} |
@ -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…
Reference in new issue