com.github.sd4324530.fastweixin.api.response.GetUserShareResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastweixin Show documentation
Show all versions of fastweixin Show documentation
quickly department weixin server
package com.github.sd4324530.fastweixin.api.response;
import com.github.sd4324530.fastweixin.api.entity.UserShare;
import java.util.List;
/**
* @author peiyu
*/
public class GetUserShareResponse extends BaseResponse {
private List list;
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy