1 2 3 4 5 6 7 8 9 10 11 12 13 14
package moe.nea.firm import ext.StringIdentifiable object User : ManagedConfig("test") { val option by choice("name") { TestEnum.A } enum class TestEnum : StringIdentifiable { A, B, C; } } fun main() { User.option }