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