/** * */ package net.tasksnow.model.cards; import java.io.Serializable; /** * @author D056974 * */ public class Label implements Serializable { private String value = ""; public Label(String value) { this.value = value; } /** * @return the value */ public String getValue() { return value; } /** * @param value * the value to set */ public void setValue(String value) { this.value = value; } }