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

org.opencds.cqf.cql.terminology.CodeSystemInfo Maven / Gradle / Ivy

There is a newer version: 1.3.12.1
Show newest version
package org.opencds.cqf.cql.terminology;

/**
 * Created by Bryn on 8/2/2016.
 */
public class CodeSystemInfo {
    private String id;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public CodeSystemInfo withId(String id) {
        this.setId(id);
        return this;
    }

    private String version;
    public String getVersion() {
        return version;
    }
    public void setVersion(String version) {
        this.version = version;
    }
    public CodeSystemInfo withVersion(String version) {
        this.setVersion(version);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy