1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-04-18 10:30:53 +00:00
comunicapiv3/src/data/new_custom_emoji.rs

11 lines
188 B
Rust

//! # New custom emoji
//!
//! @author Pierre Hubert
use crate::data::user::UserID;
pub struct NewCustomEmoji {
pub user_id: UserID,
pub shortcut: String,
pub path: String,
}