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';
}