| 12345678910111213141516171819 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// AppipGetResponse.
- /// </summary>
- public class AppipGetResponse : TopResponse
- {
- /// <summary>
- /// ISV发起请求服务器IP
- /// </summary>
- [XmlElement("ip")]
- public string Ip { get; set; }
- }
- }
|