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

18 lines
426 B
C#

using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// ZolozAuthenticationCustomerSmileliveInitializeResponse.
/// </summary>
public class ZolozAuthenticationCustomerSmileliveInitializeResponse : AopResponse
{
/// <summary>
/// result
/// </summary>
[XmlElement("result")]
public string Result { get; set; }
}
}