use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use sqlx::FromRow; use uuid::Uuid; #[derive(Debug, Clone, PartialEq, Serialize, Deserialize, FromRow)] pub struct RepoReleaseModel { pub id: Uuid, pub repo: Uuid, pub tag_name: String, pub target_commit_sha: String, pub name: String, pub body: Option, pub draft: bool, pub prerelease: bool, pub author: Uuid, pub published_at: Option>, pub created_at: DateTime, pub updated_at: DateTime, }