continuity/Server/DB/Documents/Gender.cs
Timothy Schenk 21c9d925f3
All checks were successful
Test if Server can be built / build-server (push) Successful in 21s
feat: add additional data to character
2023-08-14 23:05:53 +02:00

8 lines
108 B
C#

namespace Server.DB.Documents;
public enum Gender : byte
{
None = 0,
Male = 1,
Female = 2
}