1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-07-07 00:02:49 +00:00
Files
comunicapiv3/src/data/new_custom_emoji.rs
2021-01-20 18:31:01 +01:00

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