mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-07 19:32:34 +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,
|
||
|
}
|