azalea_protocol/packets/config/
c_custom_report_details.rs1use std::collections::HashMap;
2
3use azalea_buf::AzBuf;
4use azalea_protocol_macros::ClientboundConfigPacket;
5
6#[derive(Clone, Debug, AzBuf, ClientboundConfigPacket)]
7pub struct ClientboundCustomReportDetails {
8 pub details: HashMap<String, String>,
9}