use chrono::{DateTime, Utc}; use uuid::Uuid; #[derive(Clone, Debug)] pub struct ArticleEntity { pub id: Uuid, pub title: String, pub slug: String, pub category: String, pub excerpt: String, pub content: String, pub cover_url: Option, pub author_name: Option, pub is_published: bool, pub created_at: DateTime, pub updated_at: DateTime, }