aboutsummaryrefslogtreecommitdiffstats
path: root/filamento/src/user.rs
blob: f19a4ad9bf8d9dd2e7e539f502d9832ca07bb0f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
use jid::JID;

#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
pub struct User {
    pub jid: JID,
    pub nick: Option<String>,
    pub avatar: Option<String>,
    // pub cached_status_message: Option<String>,
}