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

org.opencb.biodata.models.pharma.guideline.TextMarkdown Maven / Gradle / Ivy

The newest version!
package org.opencb.biodata.models.pharma.guideline;

public class TextMarkdown {
    private float id;
    private String html;
    private float version;

    public float getId() {
        return id;
    }

    public TextMarkdown setId(float id) {
        this.id = id;
        return this;
    }

    public String getHtml() {
        return html;
    }

    public TextMarkdown setHtml(String html) {
        this.html = html;
        return this;
    }

    public float getVersion() {
        return version;
    }

    public TextMarkdown setVersion(float version) {
        this.version = version;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy