1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-07 19:32:34 +00:00
comunicapiv3/src/data/user_like.rs

13 lines
215 B
Rust
Raw Normal View History

2020-07-13 17:26:19 +00:00
//! User like
//!
//! @author Pierre Hubert
use crate::data::user::UserID;
pub struct UserLike {
pub id: u64,
pub user_id: UserID,
pub time_sent: u64,
pub elem_type: String,
pub elem_id: u64,
}