mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-10 04:32:28 +00:00
13 lines
218 B
Rust
13 lines
218 B
Rust
|
//! User custom emoji
|
||
|
//!
|
||
|
//! @author Pierre Hubert
|
||
|
|
||
|
use crate::data::user::UserID;
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
pub struct CustomEmoji {
|
||
|
pub id: u64,
|
||
|
pub user_id: UserID,
|
||
|
pub shortcut: String,
|
||
|
pub path: String,
|
||
|
}
|