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

com.cx.restclient.dto.CxVersion Maven / Gradle / Ivy

package com.cx.restclient.dto;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Created by Galn on 4/1/2019.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class CxVersion {
    private String version;
    private String hotFix;

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }

    public String getHotFix() {
        return hotFix;
    }

    public void setHotFix(String hotFix) {
        this.hotFix = hotFix;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy