use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use sqlx::FromRow; use uuid::Uuid; #[derive(Debug, Clone, PartialEq, Serialize, Deserialize, FromRow)] pub struct UserProfileModel { pub user: Uuid, pub language: String, pub theme: String, pub timezone: String, pub created_at: DateTime, pub updated_at: DateTime, }