1use serde::Deserialize; 2 3use crate::models::Attachment; 4 5/// User profile. 6#[derive(Debug, Clone, PartialEq, Deserialize)] 7pub struct UserProfile { 8 /// Profile content. 9 pub content: Option<String>, 10 /// Profile background. 11 pub background: Option<Attachment>, 12}