package com.k_int.discover.search.action;

public class CriteriaMapper
{
    public String label = "";
    public String value = "";
    public boolean checked = false;
    
    public CriteriaMapper(String label, String value, boolean checked) {
        this.label = label;
        this.value = value;
        this.checked = checked;
    }
    
    public String getLabel() {
        return this.label;
    }
    
    public String getValue() {
        return this.value;
    }
    
    public boolean getChecked() {
        return this.checked;
    }
}
