using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// MixnickGetResponse. /// public class MixnickGetResponse : TopResponse { /// /// 混淆后的用户名 /// [XmlElement("nick")] public string Nick { get; set; } } }