package it.inaf.ia2.gms.model.response; import java.util.List; public class UserGroup { private String groupId; private List groupCompleteName; public String getGroupId() { return groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public List getGroupCompleteName() { return groupCompleteName; } public void setGroupCompleteName(List groupCompleteName) { this.groupCompleteName = groupCompleteName; } }