NIMSDK-AOS  10.6.0
QChatDeleteServerParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
8 public class QChatDeleteServerParam {
9 
13  @NonNull
14  private final Long serverId;
15 
21  public QChatDeleteServerParam(long serverId) {
22  this.serverId = serverId;
23  }
24 
29  @NonNull
30  public Long getServerId() {
31  return serverId;
32  }
33 
34 }