blob: 8669fc3dbfafc08c481ddea85528976ebad4405f (
plain) (
tree)
|
|
use jid::JID;
#[derive(Debug, sqlx::FromRow, Clone)]
pub struct User {
pub jid: JID,
pub nick: Option<String>,
pub avatar: Option<String>,
// pub cached_status_message: Option<String>,
}
|