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