use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use sqlx::FromRow; use uuid::Uuid; #[derive(Debug, Clone, PartialEq, Serialize, Deserialize, FromRow)] pub struct UserPasswordModel { pub user: Uuid, pub hash: String, pub salt: String, pub is_active: bool, pub reason: Option, pub created_at: DateTime, pub updated_at: DateTime, }