//! UNS(User name service) association types.
uselibipld::DagCbor;useserde::{Deserialize, Serialize};/// MNS account information.
#[derive(Debug, Default, DagCbor, Serialize, Deserialize, Clone)]pubstructUNSAccount{/// The nft id of **UNS contract**
pubid:u64,
/// display user name for **UNS account** .
pubuser_name: String,
}