Back to project page YesNoGame.
The source code is released under:
GNU General Public License
If you think the Android project YesNoGame listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package example.swa.yesnogame.domain.dto; /* www . j av a 2 s . c o m*/ /** * Entity class. Immutable. Cloneable. Comparable. Equals on name (key). * * @author Hendrik.Stilke@siemens.com * */ public class UserSimpleDto { Long Id; String Name; public UserSimpleDto(Long id, String name) { super(); this.Id = id; this.Name = name; } public Long getId() { return this.Id; } public String getName() { return this.Name; } public void setId(Long id) { this.Id = id; } public void setName(String name) { this.Name = name; } }