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

io.rong.models.group.UserGroup Maven / Gradle / Ivy

package io.rong.models.group;

/**
 * @author RongCloud
 */
public class UserGroup {

    private String id;
    private GroupModel[] groups;

    public UserGroup() {
    }

    public UserGroup(String id, GroupModel[] groups) {
        this.id = id;
        this.groups = groups;
    }

    public String getId() {
        return this.id;
    }

    public UserGroup setId(String id) {
        this.id = id;
        return this;
    }

    public GroupModel[] getGroups() {
        return this.groups;
    }

    public UserGroup setGroups(GroupModel[] groups) {
        this.groups = groups;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy