1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| /*
| * Copyright (c) 2020 WildFireChat. All rights reserved.
| */
|
| package cn.wildfire.chat.kit.contact.model;
|
| public class ContactCountFooterValue extends FooterValue {
|
| public ContactCountFooterValue() {
| }
|
| @Override
| public boolean equals(Object o) {
| return false;
| }
| }
|
|