blob: 3d5dcb494113b25fd15156deaf9045953f6688d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
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>,
}
|