blob: b2ea8e4a1b481e7d6270d57a0ba33a71dbe88550 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
use jid::JID;
#[derive(Debug, Clone)]
pub struct User {
pub jid: JID,
pub nick: Option<String>,
pub avatar: Option<String>,
// pub cached_status_message: Option<String>,
}
|