using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// UserAvatarGetResponse. /// public class UserAvatarGetResponse : TopResponse { /// /// 用户头像地址 /// [XmlElement("avatar")] public string Avatar { get; set; } } }