Newer
Older
NemophilaServer / src / main / java / org / ntlab / nemophila / entities / AccountNameJson.java
  1. package org.ntlab.nemophila.entities;
  2.  
  3. import com.fasterxml.jackson.annotation.JsonProperty;
  4.  
  5. public class AccountNameJson {
  6. @JsonProperty("uid")
  7. private String uid;
  8. @JsonProperty("name")
  9. private String name;
  10.  
  11. public AccountNameJson(String uid, String name) {
  12. this.uid = uid;
  13. this.name = name;
  14. }
  15. }