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

com.github.youyinnn.common.utils.JoinGroupConfirmInformBody Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package com.github.youyinnn.common.utils;

import com.github.youyinnn.common.packets.BaseBody;

/**
 * @author youyinnn
 */
public class JoinGroupConfirmInformBody extends BaseBody {

    private String groupId;

    private String fromUserId;

    public JoinGroupConfirmInformBody() {
    }

    public String getGroupId() {
        return groupId;
    }

    public void setGroupId(String groupId) {
        this.groupId = groupId;
    }

    public String getFromUserId() {
        return fromUserId;
    }

    public void setFromUserId(String fromUserId) {
        this.fromUserId = fromUserId;
    }

    public JoinGroupConfirmInformBody(String groupId, String fromUserId) {
        this.groupId = groupId;
        this.fromUserId = fromUserId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy