18 lines
426 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|