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