| 12345678910111213141516171819 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// TopIpoutGetResponse.
- /// </summary>
- public class TopIpoutGetResponse : TopResponse
- {
- /// <summary>
- /// TOP网关出口IP列表
- /// </summary>
- [XmlElement("ip_list")]
- public string IpList { get; set; }
- }
- }
|