package com.yeshi.push.entity;
|
|
public class PushAppInfo {
|
private String appId;
|
private String appKey;
|
private String appSecret;
|
|
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;
|
}
|
}
|