use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use sqlx::FromRow; use uuid::Uuid; #[derive(Debug, Clone, PartialEq, Serialize, Deserialize, FromRow)] pub struct UserSshKeyModel { pub id: i64, pub user: Uuid, pub title: String, pub public_key: String, pub fingerprint: String, pub key_type: String, pub key_bits: Option, pub is_verified: bool, pub last_used_at: Option>, pub expires_at: Option>, pub is_revoked: bool, pub created_at: DateTime, pub updated_at: DateTime, }