mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-28 19:52:15 -05:00
8 lines
201 B
Java
8 lines
201 B
Java
package eu.siacs.conversations.xmpp;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
public interface OnContactStatusChanged {
|
|
public void onContactStatusChanged(Contact contact, boolean online);
|
|
}
|