diff options
author | Wyvest <45589059+Wyvest@users.noreply.github.com> | 2022-03-12 15:43:15 +0700 |
---|---|---|
committer | Wyvest <45589059+Wyvest@users.noreply.github.com> | 2022-03-12 15:43:15 +0700 |
commit | eece3cb994280498d2a9c259030cc79a4be3fce3 (patch) | |
tree | e23c8d6a1c2553d2511630012f275ffa15ebf532 /src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt | |
parent | 380e0adb5ef1401dd8cbf70b2ef7bc121c371c42 (diff) | |
download | Chatting-eece3cb994280498d2a9c259030cc79a4be3fce3.tar.gz Chatting-eece3cb994280498d2a9c259030cc79a4be3fce3.tar.bz2 Chatting-eece3cb994280498d2a9c259030cc79a4be3fce3.zip |
color property
Diffstat (limited to 'src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt')
-rw-r--r-- | src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt b/src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt index 1e20b01..2cd4418 100644 --- a/src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt +++ b/src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt @@ -20,6 +20,9 @@ data class ChatTab( @SerializedName("ignore_ends") val ignoreEndsWith: List<String>?, @SerializedName("ignore_equals") val ignoreEquals: List<String>?, @SerializedName("ignore_regex") val uncompiledIgnoreRegex: List<String>?, + val color: Int?, + @SerializedName("hovered_color") val hoveredColor: Int?, + @SerializedName("selected_color") val selectedColor: Int?, val prefix: String, ) { lateinit var button: TabButton |