Created
December 12, 2012 14:25
-
-
Save krams915/4268110 to your computer and use it in GitHub Desktop.
Spring Thymeleaf UserDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.krams.response; | |
import java.io.Serializable; | |
public class UserDto implements Serializable { | |
private Long id; | |
private String firstName; | |
private String lastName; | |
private String username; | |
private Integer role; | |
...getters/setters... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment