I have a Person Entity in my domain, this person have Gender and Status property, this properties are ValueObjects?
Gender = { Male, Female }
Status = { Active, Inactive }
I'm using EF, I'm thinking of creating enums for them. I'm doing something wrong?