package multimonster.common; /** * @author Marc Iseler */ public class UserGroup { private int groupID; private String groupName; /** * */ public UserGroup() { super(); // TODO Auto-generated constructor stub } /** * @return Returns the groupID. */ public int getGroupID() { return groupID; } /** * @param groupID The groupID to set. */ public void setGroupID(int groupID) { this.groupID = groupID; } /** * @return Returns the groupName. */ public String getGroupName() { return groupName; } /** * @param groupName The groupName to set. */ public void setGroupName(String groupName) { this.groupName = groupName; } }