package fi.otavanopisto.muikku.rest.model; public class UserGroup { public UserGroup() { } public UserGroup(Long id, String name, Long userCount) { this.id = id; this.name = name; this.userCount = userCount; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Long getUserCount() { return userCount; } public void setUserCount(Long userCount) { this.userCount = userCount; } private Long id; private String name; private Long userCount; }