18 lines
427 B
C#
18 lines
427 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Alipay.AopSdk.Core.Response
|
|
{
|
|
/// <summary>
|
|
/// ZolozAuthenticationCustomerSmilepayInitializeResponse.
|
|
/// </summary>
|
|
public class ZolozAuthenticationCustomerSmilepayInitializeResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 返回值
|
|
/// </summary>
|
|
[XmlElement("result")]
|
|
public string Result { get; set; }
|
|
}
|
|
}
|