1use crate::spec::prelude::*; 2 3// 4// Icrc10SupportedStandard 5// Response payload describing a single supported standard entry. 6// 7 8#[derive(CandidType, Debug, Deserialize, Eq, PartialEq)] 9pub struct Icrc10SupportedStandard { 10 pub url: String, 11 pub name: String, 12}