All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fi.foyt.fni.rest.users.model.UserGroup Maven / Gradle / Ivy

There is a newer version: 3.3.13
Show newest version
package fi.foyt.fni.rest.users.model;

public class UserGroup {

  public UserGroup() {
  }
  
  public UserGroup(Long id, String name) {
    this.id = id;
    this.name = name;
  }
  
  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;
  }
  
  private Long id;
  private String name;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy