mirror of
https://github.com/vernu/textbee.git
synced 2026-02-19 23:26:14 -05:00
chore(android): update types for device version fields
This commit is contained in:
@@ -11,7 +11,7 @@ public class RegisterDeviceInputDTO {
|
||||
private String os;
|
||||
private String osVersion;
|
||||
private String appVersionName;
|
||||
private String appVersionCode;
|
||||
private int appVersionCode;
|
||||
|
||||
public RegisterDeviceInputDTO() {
|
||||
}
|
||||
@@ -100,11 +100,11 @@ public class RegisterDeviceInputDTO {
|
||||
this.appVersionName = appVersionName;
|
||||
}
|
||||
|
||||
public String getAppVersionCode() {
|
||||
public int getAppVersionCode() {
|
||||
return appVersionCode;
|
||||
}
|
||||
|
||||
public void setAppVersionCode(String appVersionCode) {
|
||||
public void setAppVersionCode(int appVersionCode) {
|
||||
this.appVersionCode = appVersionCode;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user