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

xyz.erupt.core.view.CheckboxModel Maven / Gradle / Ivy

There is a newer version: 1.12.17
Show newest version
package xyz.erupt.core.view;

import lombok.Getter;
import lombok.Setter;

/**
 * @author YuePeng
 * date 2018-11-15.
 */
@Getter
@Setter
public class CheckboxModel {

    private Object id;

    private Object label;

    public CheckboxModel(Object id, Object label) {
        this.id = id;
        this.label = label;
    }

    public CheckboxModel() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy