Update client server

This commit is contained in:
cugurlu
2019-03-04 17:54:50 +01:00
parent 85e62256c1
commit da2d08a279
157 changed files with 7010 additions and 177 deletions

View File

@@ -0,0 +1,23 @@
package gogreen.common;
public class UserDTO {
private Long id;
private String name;
public UserDTO() {
}
public UserDTO(Long id, String name) {
this.id = id;
this.name = name;
}
public String getName() {
return name;
}
public Long getId() {
return id;
}
}