Skip to content

Instantly share code, notes, and snippets.

@krams915
Created December 12, 2012 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krams915/4268110 to your computer and use it in GitHub Desktop.
Save krams915/4268110 to your computer and use it in GitHub Desktop.
Spring Thymeleaf UserDto.java
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