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

com.javajy.api.entity.Response Maven / Gradle / Ivy

The newest version!
package com.javajy.api.entity;

public class Response {
    protected String data;
    protected int code;
    protected String message;

    public Response() {
    }

    public String getData() {
        return this.data;
    }

    public void setData(String var1) {
        this.data = var1;
    }

    public int getCode() {
        return this.code;
    }

    public void setCode(int var1) {
        this.code = var1;
    }

    public String getMessage() {
        return this.message;
    }

    public void setMessage(String var1) {
        this.message = var1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy