use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use uuid::Uuid; #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, sqlx::FromRow)] pub struct WorkspaceDomain { pub id: Uuid, pub workspace_id: Uuid, pub domain: String, pub verification_token_hash: Option, pub is_primary: bool, pub is_verified: bool, pub verified_at: Option>, pub created_at: DateTime, pub updated_at: DateTime, }