//! # Comment information //! //! @author Pierre Hubert use crate::data::user::UserID; pub struct Comment { pub id: u64, pub time_sent: u64, pub user_id: UserID, pub post_id: u64, pub content: String, pub image_path: Option, }