All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.unclecatmyself.common.bean.vo.GetListVO Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy