tg_voting_contract/
msg.rs

1use schemars::JsonSchema;
2use serde::{Deserialize, Serialize};
3
4#[derive(Serialize, Deserialize, Clone, PartialEq, Eq, JsonSchema, Debug)]
5pub struct ProposalCreationResponse {
6    pub proposal_id: u64,
7}