package org.yeshi.utils.push.entity;
|
|
public class PushAppInfo {
|
|
private String appId;
|
private String appKey;
|
private String appSecret;
|
private String packageName;
|
|
public String getPackageName() {
|
return packageName;
|
}
|
|
public void setPackageName(String packageName) {
|
this.packageName = packageName;
|
}
|
|
public PushAppInfo() {
|
}
|
|
public PushAppInfo(String appId, String appKey, String appSecret) {
|
this.appId = appId;
|
this.appKey = appKey;
|
this.appSecret = appSecret;
|
}
|
|
public String getAppId() {
|
return appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
public String getAppKey() {
|
return appKey;
|
}
|
|
public void setAppKey(String appKey) {
|
this.appKey = appKey;
|
}
|
|
public String getAppSecret() {
|
return appSecret;
|
}
|
|
public void setAppSecret(String appSecret) {
|
this.appSecret = appSecret;
|
}
|
}
|