gitdataai/lib/model/users/user_ssh_key.rs
2026-05-30 01:38:40 +08:00

22 lines
586 B
Rust

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<i32>,
pub is_verified: bool,
pub last_used_at: Option<DateTime<Utc>>,
pub expires_at: Option<DateTime<Utc>>,
pub is_revoked: bool,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}