DeviceInfoBean.java 625 Bytes
package com.sw.laryngoscope.db;

public class DeviceInfoBean /*implements Serializable*/ {

    public String txt_cap;
    public String txt_value;

    public DeviceInfoBean(String txt_cap, String txt_value) {
        this.txt_cap = txt_cap;
        this.txt_value = txt_value;
    }

    public String getTxt_cap() {
        return txt_cap;
    }

    public void setTxt_cap(String txt_cap) {
        this.txt_cap = txt_cap;
    }

    public String getTxt_value() {
        return txt_value;
    }

    public void setTxt_value(String txt_value) {
        this.txt_value = txt_value;
    }

}