This commit is contained in:
10
src/main/kotlin/api/ApiObject.kt
Normal file
10
src/main/kotlin/api/ApiObject.kt
Normal file
@@ -0,0 +1,10 @@
|
||||
package api
|
||||
|
||||
import com.google.gson.annotations.SerializedName
|
||||
import java.time.LocalDate
|
||||
|
||||
data class ApiObject(
|
||||
@SerializedName("tag") val tag: String,
|
||||
@SerializedName("device_id") val device_id: Int,
|
||||
@SerializedName("device_date") val device_date: LocalDate
|
||||
)
|
||||
Reference in New Issue
Block a user