Add the possibility of unknown to the gender entity

This commit is contained in:
2024-10-31 12:10:35 +01:00
parent 1cadc71d5a
commit 64f3b40694
4 changed files with 7 additions and 4 deletions

View File

@@ -16,4 +16,5 @@ enum GenderEnum: string
case MALE = 'man';
case FEMALE = 'woman';
case NEUTRAL = 'neutral';
case UNKNOWN = 'unknown';
}

View File

@@ -18,4 +18,5 @@ enum GenderIconEnum: string
case NEUTRAL = 'bi bi-gender-neuter';
case AMBIGUOUS = 'bi bi-gender-ambiguous';
case TRANS = 'bi bi-gender-trans';
case UNKNOWN = 'bi bi-question';
}