ConfigType

- Documented enum members
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-27 13:48:41 +02:00
parent 46eeaa4430
commit 6e11752590
1 changed files with 15 additions and 0 deletions

View File

@ -39,9 +39,24 @@ private union ConfigValue
*/
public enum ConfigType
{
/**
* A string
*/
TEXT,
/**
* An integer
*/
NUMERIC,
/**
* A boolean
*/
FLAG,
/**
* A string array
*/
ARRAY
}