Introduce dtos

This commit is contained in:
2023-10-16 22:37:49 +02:00
parent 707bfae2e3
commit fc98f99eda
9 changed files with 107 additions and 7 deletions

View File

@@ -2,8 +2,8 @@ namespace GerbilManager.Models
{
public enum Gender
{
unknown,
male,
female
unknown = 0,
male = 1,
female = 2
}
}