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

io.github.yedaxia.apidocs.ext.rap.ModelResponse Maven / Gradle / Ivy

There is a newer version: 1.4.4
Show newest version
package io.github.yedaxia.apidocs.ext.rap;

/**
 * @author yeguozhong yedaxia.github.com
 */
class ModelResponse {

    private int code;
    private String msg;
    private Project model;

    public int getCode() {
        return code;
    }

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

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public Project getModel() {
        return model;
    }

    public void setModel(Project model) {
        this.model = model;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy