Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZolozIdentificationDeviceinfoQueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

19 lines
458 B
C#

using System;
using System.Xml.Serialization;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// ZolozIdentificationDeviceinfoQueryResponse.
/// </summary>
public class ZolozIdentificationDeviceinfoQueryResponse : AopResponse
{
/// <summary>
/// device_info
/// </summary>
[XmlElement("device_info")]
public ZolozDeviceInfo DeviceInfo { get; set; }
}
}