1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-11-22 21:39:21 +00:00
comunicapiv3/src/data/user_like.rs

13 lines
215 B
Rust

//! 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,
}