using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// WeexAppkeyListResponse. /// public class WeexAppkeyListResponse : TopResponse { /// /// result /// [XmlArray("results")] [XmlArrayItem("appkey_list")] public List Results { get; set; } } }