use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use sqlx::FromRow; use uuid::Uuid; #[derive(Debug, Clone, PartialEq, Serialize, Deserialize, FromRow)] pub struct RepoRefModel { pub id: Uuid, pub repo: Uuid, pub name: String, pub kind: String, pub target_sha: String, pub is_default: bool, pub is_protected: bool, pub created_at: DateTime, pub updated_at: DateTime, }