/** * */ package net.tasksnow.model.cards; /** * @author D056974 * */ public class Action { private int actionKey = 0; public Action(int actionKey) { this.actionKey = actionKey; } /** * @return the action */ public int getAction() { return actionKey; } /** * @param action * the action to set */ public void setAction(int actionKey) { this.actionKey = actionKey; } }