NIMSDK-AOS  9.16.0
MuteListChangedNotify.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.friend.model;
2 
6 public class MuteListChangedNotify {
7  private String account;
8  private boolean mute;
9 
10  public MuteListChangedNotify(String account, boolean mute) {
11  this.account = account;
12  this.mute = mute;
13  }
14 
20  public String getAccount() {
21  return account;
22  }
23 
29  public boolean isMute() {
30  return mute;
31  }
32 }