e.g. ```python class EnumWithAlias(Enum): ONE = 1 TWO = 2 THREE = 3 THREE_ALIAS = THREE field = EnumField(Enum, aliases=True/False) ```