use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use sqlx::FromRow; use uuid::Uuid; #[derive(Debug, Clone, PartialEq, Serialize, Deserialize, FromRow)] pub struct IssueCommentModel { pub id: Uuid, pub issue: Uuid, pub author: Uuid, pub body: String, pub created_at: DateTime, pub updated_at: DateTime, pub deleted_at: Option>, }