Add ReactionMeta struct

This commit is contained in:
bitfl0wer 2023-06-03 15:21:49 +02:00
parent e9d5384f02
commit df6fcbd5ee
1 changed files with 8 additions and 0 deletions

View File

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