Is There the Ability to Create Custom Enums?

The title says it all. It would make my code a lot more readable if this was the case, so I’m just wondering if I can store states in Enums instead of strings.

1 Like

No. Enums are just shortcuts for number codes that nobody can remember. They are not substitutes for strings.

You could use a blank Folder or Model and use Attributes to improve readability if you’d like.

2 Likes

You got that right. Anyways, I’ll probably take your advice and make probably some “Enum” class with some of the OOP I’m trying to incorporate in this project.