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

#[derive(Debug, sqlx::FromRow)]
pub struct User {
    pub jid: JID,
    pub cached_status_message: Option<String>,
}