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

com.github.unclecatmyself.common.bean.vo.SendServerVO 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;

/**
 * Created by MySelf on 2019/1/2.
 */
public class SendServerVO {

    private String token;

    private String value;

    public String getToken() {
        return token;
    }

    public void setToken(String token) {
        this.token = token;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy