use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use uuid::Uuid; #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, sqlx::FromRow, utoipa::ToSchema)] pub struct RepoReleaseAsset { pub id: Uuid, pub release_id: Uuid, pub filename: String, pub size_bytes: i64, pub mime_type: String, pub storage_path: String, pub url: Option, pub download_count: i64, pub uploaded_by: Option, pub created_at: DateTime, pub updated_at: DateTime, pub deleted_at: Option>, }