use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use uuid::Uuid; #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, sqlx::FromRow)] pub struct RepoRelease { pub id: Uuid, pub repo_id: Uuid, pub tag_id: Option, pub tag_name: String, pub title: String, pub body: Option, pub draft: bool, pub prerelease: bool, pub author_id: Uuid, pub published_at: Option>, pub created_at: DateTime, pub updated_at: DateTime, pub deleted_at: Option>, }