mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-22 21:39:21 +00:00
13 lines
215 B
Rust
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,
|
|
} |