package org.ntlab.nemophila.entities;
import com.fasterxml.jackson.annotation.JsonProperty;
public class AccountNameJson {
@JsonProperty("uid")
private String uid;
@JsonProperty("name")
private String name;
public AccountNameJson(String uid, String name) {
this.uid = uid;
this.name = name;
}
}