com.github.unclecatmyself.common.bean.vo.GetListVO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of InChat Show documentation
Show all versions of InChat Show documentation
A lightweight, efficient communication framework that supports chat and the Internet of Things
The newest version!
package com.github.unclecatmyself.common.bean.vo;
import java.util.Set;
/**
* Create by UncleCatMySelf in 12:26 2018\12\31 0031
*/
public class GetListVO {
private Set tokens;
public GetListVO(Set tokens) {
this.tokens = tokens;
}
public Set getTokens() {
return tokens;
}
public void setTokens(Set tokens) {
this.tokens = tokens;
}
}