add support of data checking in webapp

This commit is contained in:
2022-05-17 18:58:43 +06:00
parent d386d50f1c
commit 4dac411693
8 changed files with 69 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
import kotlinx.serialization.Serializable
@Serializable
data class WebAppDataWrapper(
val data: String,
val hash: String
)