1 package com.netease.nimlib.sdk.qchat.model;
3 import androidx.annotation.NonNull;
4 import java.io.Serializable;
5 import java.util.Objects;
15 private final Long serverId;
20 private final Long categoryId;
23 this.serverId = serverId;
24 this.categoryId = categoryId;
42 if (o == null || getClass() != o.getClass()) {
46 return Objects.
equals(serverId, that.serverId) && Objects.equals(categoryId, that.categoryId);
51 return Objects.hash(serverId, categoryId);
56 return "QChatChannelCategoryIdInfo{" +
57 "serverId=" + serverId +
58 ", categoryId=" + categoryId +
QChatChannelCategoryIdInfo(long serverId, long categoryId)