fix: 修复检查更新失效

This commit is contained in:
HuanCheng65 2020-08-20 23:09:09 +08:00 committed by GitHub
parent c6c1ac90ff
commit 6501d0c984
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -3,10 +3,10 @@ package com.huanchengfly.tieba.post.api.models
import com.google.gson.annotations.SerializedName
class NewUpdateBean {
val isSuccess: Boolean? = null
val success: Boolean
@SerializedName("has_update")
val isHasUpdate: Boolean? = null
val isHasUpdate: Boolean
@SerializedName("error_code")
val errorCode: Int? = null
@ -36,4 +36,4 @@ class NewUpdateBean {
val name: String? = null
val url: String? = null
}
}
}