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

com.global.api.entities.gpApi.entities.UserAccount Maven / Gradle / Ivy

There is a newer version: 14.3.1
Show newest version
package com.global.api.entities.gpApi.entities;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class UserAccount {
    private String id;
    private String name;
    private String type;

    public UserAccount(String id) {
        this.id = id;
    }

    public UserAccount(String id, String name) {
        this.id = id;
        this.name = name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy