package moe.nea.firm import kotlin.properties.ReadOnlyProperty import kotlin.reflect.KProperty class ManagedOption : ReadOnlyProperty { override fun getValue(thisRef: Any?, property: KProperty<*>): T { return TODO() } }