1use cosmwasm_schema::cw_serde; 2use cosmwasm_std::Addr; 3 4#[cw_serde] 5pub struct AppContractResponse { 6 pub app_contract: Addr, 7}