aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data/jsonobjects
diff options
context:
space:
mode:
authorNopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>2024-10-07 07:43:06 +1100
committerGitHub <noreply@github.com>2024-10-06 22:43:06 +0200
commit023b44c71ea7739716ebd010cea2841e5336a69b (patch)
treef3ad5be27448d533449a0330d5422e7f6b4c4f57 /src/main/java/at/hannibal2/skyhanni/data/jsonobjects
parent4df35d062a41f0e8fed82caf2249c2e71f5b4058 (diff)
downloadskyhanni-023b44c71ea7739716ebd010cea2841e5336a69b.tar.gz
skyhanni-023b44c71ea7739716ebd010cea2841e5336a69b.tar.bz2
skyhanni-023b44c71ea7739716ebd010cea2841e5336a69b.zip
Added the ability to disable chat errors via the repo (#2668)
Co-authored-by: Cal <cwolfson58@gmail.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data/jsonobjects')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/RepoErrorData.kt10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/RepoErrorData.kt b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/RepoErrorData.kt
new file mode 100644
index 000000000..486617651
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/RepoErrorData.kt
@@ -0,0 +1,10 @@
+package at.hannibal2.skyhanni.data.jsonobjects.repo
+
+import com.google.gson.annotations.Expose
+
+data class RepoErrorData(
+ @Expose var messageExact: List<String>?,
+ @Expose var messageStartsWith: List<String>?,
+ @Expose var replaceMessage: String?,
+ @Expose var affectedVersions: List<String> = listOf(),
+)