using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// JushitaJdpUsersGetResponse. /// public class JushitaJdpUsersGetResponse : TopResponse { /// /// 总记录数 /// [XmlElement("total_results")] public long TotalResults { get; set; } /// /// 用户列表 /// [XmlArray("users")] [XmlArrayItem("jdp_user")] public List Users { get; set; } } }