Skip to content

Instantly share code, notes, and snippets.

@Enigo
Created December 21, 2023 06:57
Show Gist options
  • Save Enigo/3c9e24d6d4734d44ff208ce755e06dfb to your computer and use it in GitHub Desktop.
Save Enigo/3c9e24d6d4734d44ff208ce755e06dfb to your computer and use it in GitHub Desktop.
#[derive(Serialize, Deserialize)]
pub struct SearchData {
pub asset_content_data: Vec<AssetContentData>,
}
#[derive(Serialize, Deserialize, PartialEq, Clone)]
pub struct AssetContentData {
pub token_id: i32,
pub token_address: String,
pub name: String,
pub image_url: String,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment