Select remote
interface IDictionaryService {
fun dictionary(search: String?, initial: String?): List<RemoteOption>
}@Serializable
data class RemoteOption(
val value: String? = null,
val text: String? = null,
val className: String? = null,
val subtext: String? = null,
val icon: String? = null,
val content: String? = null,
val disabled: Boolean = false,
val divider: Boolean = false
)Last updated