use botx_api::{
bot::models::*, api::models::AsyncFile,
};
use uuid::Uuid;
#[derive(Debug)]
pub struct RequestContext {
pub sync_id: Uuid,
pub source_sync_id: Option<Uuid>,
pub attachments: Vec<Attachment>,
pub from: From,
pub async_files: Vec<AsyncFile>,
pub bot_id: Uuid,
pub proto_version: u16,
pub entities: Vec<CommandEntities>,
}