package cc.woverflow.chatting.chat data class ChatRegexes(val regexList: List?) { val compiledRegexList: MutableList = arrayListOf() init { regexList?.forEach { compiledRegexList.add(Regex(it)) } } }