blob: 8597a753a77a11ead337980b96b3ca4c3f498239 (
plain)
1
2
3
4
5
6
7
|
package eu.siacs.conversations.xmpp;
import eu.siacs.conversations.entities.Contact;
public interface OnContactStatusChanged {
public void onContactStatusChanged(Contact contact);
}
|