ofdb_entities/comment.rs
1use crate::{id::*, time::*};
2
3#[rustfmt::skip]
4#[derive(Debug, Clone, PartialEq, Eq)]
5pub struct Comment {
6 pub id : Id,
7 pub rating_id : Id,
8 // TODO: Convert time stamps from second to millisecond precision?
9 pub created_at : Timestamp,
10 pub archived_at : Option<Timestamp>,
11 pub text : String,
12}