Newer
Older
NemophilaServer / src / main / java / org / ntlab / nemophila / entities / AccountNameJson.java
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;
    }
}