aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/org/polyfrost/chatting/chat/ChatTabsJson.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/org/polyfrost/chatting/chat/ChatTabsJson.kt')
-rw-r--r--src/main/kotlin/org/polyfrost/chatting/chat/ChatTabsJson.kt15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/kotlin/org/polyfrost/chatting/chat/ChatTabsJson.kt b/src/main/kotlin/org/polyfrost/chatting/chat/ChatTabsJson.kt
new file mode 100644
index 0000000..c5939c3
--- /dev/null
+++ b/src/main/kotlin/org/polyfrost/chatting/chat/ChatTabsJson.kt
@@ -0,0 +1,15 @@
+package org.polyfrost.chatting.chat
+
+import com.google.gson.JsonArray
+import com.google.gson.annotations.SerializedName
+
+data class ChatTabsJson(@SerializedName("tabs") val tabs: JsonArray, var version: Int) {
+
+ override fun toString(): String {
+ return "{\"tabs\": $tabs, \"version\": $version}"
+ }
+
+ companion object {
+ const val VERSION = 6
+ }
+} \ No newline at end of file