1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-04-04 03:42:36 +00:00
comunicapiv3/src/data/comment.rs

16 lines
285 B
Rust

//! # Comment information
//!
//! @author Pierre Hubert
use crate::data::user::UserID;
#[derive(Debug, Clone)]
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<String>,
}