package com.ufund.api.ufundapi.model; import com.fasterxml.jackson.annotation.JsonProperty; public class User { @JsonProperty("name") private String name; /** * Create a new user * * @param name The name of the user */ public User(String name) { this.name = name; } }