All Downloads are FREE. Search and download functionalities are using the official Maven repository.

website.automate.teamcity.server.web.model.AccountResponse Maven / Gradle / Ivy

The newest version!
package website.automate.teamcity.server.web.model;

import java.util.List;

public class AccountResponse extends AbstractResponse {

    private String username;
    
    private List projects;

    public List getProjects() {
        return projects;
    }

    public void setProjects(List projects) {
        this.projects = projects;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy