update of reaction struct

This commit is contained in:
Vivien 2023-07-30 20:27:13 +02:00
parent 909f1c0285
commit 6ec26feffb
1 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
use serde::{Deserialize, Serialize};
use crate::types::{
@ -181,6 +183,8 @@ pub struct Reaction {
pub count: u32,
pub burst_count: u32,
pub me: bool,
pub burst_me: bool,
pub burst_colors: Vec<String>,
pub emoji: Emoji,
}