13 lines
298 B
Go
13 lines
298 B
Go
package response
|
|
|
|
// 更新版本的返回
|
|
type GetAppVersionResponse struct {
|
|
VersionCode string // 数字版本号
|
|
VersionName string // 1.0.1
|
|
MustUpdate string
|
|
AndroidDownloadUrl string
|
|
AppstoreScheme string
|
|
UpdateDesc string
|
|
FileName string
|
|
}
|