NHSE/NHSE.Core/Structures/Misc/Gender.cs

9 lines
107 B
C#

namespace NHSE.Core
{
public enum Gender
{
Masculine = 0,
Feminine = 1,
}
}