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

org.bahmni.module.referencedata.labconcepts.contract.CodedTestAnswer Maven / Gradle / Ivy

package org.bahmni.module.referencedata.labconcepts.contract;


public class CodedTestAnswer {
    private String name;
    private String uuid;

    public CodedTestAnswer() {
    }

    public CodedTestAnswer(String name, String uuid) {
        this.name = name;
        this.uuid = uuid;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getUuid() {
        return uuid;
    }

    public void setUuid(String uuid) {
        this.uuid = uuid;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy