1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipaySiteprobeDeviceInfoSearchResponse : AopResponse
- {
-
-
-
- [XmlElement("code")]
- public string Code { get; set; }
-
-
-
- [XmlElement("devices")]
- public string Devices { get; set; }
-
-
-
- [XmlElement("msg")]
- public string Msg { get; set; }
-
-
-
- [XmlElement("total")]
- public long Total { get; set; }
- }
- }
|