[+] Wacca request model

pull/29/head
Azalea 2024-03-27 23:08:58 -04:00
parent af11758190
commit 22ca06af3e
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package icu.samnyan.aqua.sega.wacca.model
open class BaseRequest {
var requestNo: Int = 0
var appVersion: String = ""
var boardId: String = ""
var chipId: String = ""
var params: List<Any> = mutableListOf()
}