Add ReactionMeta struct

This commit is contained in:
bitfl0wer 2023-06-03 15:21:49 +02:00
parent e4a185dce5
commit addfb01075
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
1 changed files with 8 additions and 0 deletions

View File

@ -1 +1,9 @@
use crate::types; use crate::types;
/**
Extends the [`types::Reaction`] struct with useful metadata.
*/
pub struct ReactionMeta {
pub message_id: types::Snowflake,
pub reaction: types::Reaction,
}